How can I plot multiple 2D contour plots on a single 3D plot?
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I have a number of 2D contour plots, and I need to represent them on one single 3D plot at various Z axis intervals. Also, the X and Y boundaries of each contour plot are different in some cases.
This is the best example I could find:
Unfortunately there isn't anything like it in the plot gallery.
How do I do this?
Thanks!
Edit: Included the example in the original question.
1 comentario
Image Analyst
el 1 de Jun. de 2013
Editada: Image Analyst
el 1 de Jun. de 2013
Can you give a link with an example of what visualization you're trying to achieve? Maybe something in Plot Gallery: http://www.mathworks.com/discovery/gallery.html
Respuestas (2)
Youssef Khmou
el 1 de Jun. de 2013
Editada: Youssef Khmou
el 1 de Jun. de 2013
You can use surf function as this example :
[x,y]=meshgrid(-1:0.1:1);
z=cos(x)+sin(y);
figure,surfc(x,y,z);
5 comentarios
Youssef Khmou
el 2 de Jun. de 2013
ok you can try to use the surf command :
[x,y]=meshgrid(-1:0.1:1);
contour=rand(size(x));
z=exp(-x.^2-y.^2);
surf(x,y,z,contour);
The contour now is placed according to the 3D object .
Athiya Sulthana
el 25 de Sept. de 2015
As you mentioned....Making the contour maps themselves 3D is no problem.....how did you get that... it would be great if you can share it.
Kres Nielsen
el 21 de Mayo de 2021
Editada: Kres Nielsen
el 21 de Mayo de 2021
I believe contourslice is the solution here.
0 comentarios
Ver también
Categorías
Más información sobre Lighting, Transparency, and Shading en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!