How can I plot multiple 2D contour plots on a single 3D plot?

4 次查看(过去 30 天)
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.

回答(2 个)

Youssef  Khmou
Youssef Khmou 2013-6-1
编辑:Youssef Khmou 2013-6-1
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 个评论
Youssef  Khmou
Youssef Khmou 2013-6-2
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
Athiya Sulthana 2015-9-25
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
Kres Nielsen 2021-5-21
编辑:Kres Nielsen 2021-5-21
I believe contourslice is the solution here.

类别

Help CenterFile Exchange 中查找有关 Lighting, Transparency, and Shading 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by