How to overlay two surf plots?
31 views (last 30 days)
Show older comments
LEONG SING YEW
on 14 Mar 2020
Commented: LEONG SING YEW
on 22 Mar 2020
Hi everyone,
I am trying to overlay the contour stroke shape into the colorful surf plot
Here the code i've tried but it doesnt work, it only show the left image above
hold on
surf(X,Y,-M1); surf(-X,Y,M1); %Reflection along y axis
surf(X,Y,Ta); surf(-X,Y,Ta); %Stroke Contour
4 Comments
Walter Roberson
on 15 Mar 2020
It would help if we had your data to work with -- X, Y, and M1 and Ta
Accepted Answer
Walter Roberson
on 16 Mar 2020
view(0,-90)
4 Comments
Walter Roberson
on 22 Mar 2020
plot() creates a 3D plot with empty Z components, and that in turn is treated the same as if the Z components were all 0. You can use plot3() to provide explicit Z coordinates; you would want to use a Z larger than the largest Z in the surf plot.
I wonder if pcolor() would be better than surf() for your purpose? pcolor is a surface plot underneath, but it creates a surface in which all the Z are 0 and the color data is set according to the Z data that was passed to pcolor(). Using Z all 0 can make it easier to draw things on top of it.
More Answers (0)
See Also
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!