Is there a way to plot a contour with a 3-Dimensional matrix?
Show older comments
Hi,
I've asked a lot of questions here recently but I am coming to the business end of my project and the stuff I am trying to do is complex.
I have a 3-D matrix that is 40x180x40, full of scalars. They are all a function of the variables that give it the second two dimensions (so, the 180x40) so it is these values I want on the X and Y axes, and then the colour be determined by the values inside the 3-D matrix. Is this possible?
8 Comments
jonas
on 4 Aug 2018
Sorry I completely misread the size of the matrix. Will come up with a better answer in a sec :)
Harvey Rael
on 4 Aug 2018
jonas
on 4 Aug 2018
The contour and surf functions are used for 3d surface. I'm not entirely sure what it is that you have in your matrix. Have you tried scatter3?
Harvey Rael
on 4 Aug 2018
Harvey Rael
on 4 Aug 2018
But it seems you have multiple values (40 to be exact) per x and y coordinate? Thats not something you represent by a single surface. Sorry if I am still misunderstanding.
Note that you can color map by scatter3 as well. It will not interpolate between coordinates though.
Harvey Rael
on 4 Aug 2018
Makes sense! You cannot plot the entire data set on a surface. You can plot a slice of your 3d matrix as a surface, but not the entire data set. I would try scatter3 with color coding, it may end up looking OK.
Start by something like this:
[X Y]=meshgrid(1:40,1:180);
A=randn(40,180,40);
X=repmat(X,1,1,40);
Y=repmat(Y,1,1,40);
scatter3(X(:),Y(:),A(:),[],A(:),'.');
colorbar
As you can see, this blob has a thickness and cannot be represented as a surface.
Answers (3)
Steven Lord
on 5 Aug 2018
0 votes
I'm not certain, but from your description I think you might want an isosurface.
Harvey Rael
on 7 Aug 2018
0 votes
1 Comment
You cannot stack contourf plots, because they are all plotted in the same plane. If you want to make something meaningful of this stack, then you have to adjust the hidden property "ContourZLevel". You will get something like this:

40 stacked plots will make for a colorful but unreadable image :)
See my answer for a better method.
jonas
on 7 Aug 2018
0 votes
Categories
Find more on Surface and Mesh Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!