How to overlay two surf plots?
5 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
LEONG SING YEW
le 14 Mar 2020
Commenté : LEONG SING YEW
le 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 commentaires
Walter Roberson
le 15 Mar 2020
It would help if we had your data to work with -- X, Y, and M1 and Ta
Réponse acceptée
Walter Roberson
le 16 Mar 2020
view(0,-90)
4 commentaires
Walter Roberson
le 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.
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!




