How do I plot 2 surf plots in the same figure

so I have 2 surf plots Z1 and Z2. I can plot both separately using
surf(X,Y,Z1) and
surf(X,Y,Z2)
but how do I plot them together on the same plot?

1 comentario

Luis Carrion
Luis Carrion el 13 de Jul. de 2022
In the sme figure, but different axes:
tiledlayout(rows, columns)
nexttile
surf(X,Y,Z1)
nexttile
surf(X,Y,Z2)

Iniciar sesión para comentar.

 Respuesta aceptada

Star Strider
Star Strider el 6 de Feb. de 2018
Use the hold (link) function.
figure(1)
surf(X,Y,Z1)
hold on
surf(X,Y,Z2)
hold off
grid on

Más respuestas (0)

Categorías

Más información sobre Graphics Object Properties en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 6 de Feb. de 2018

Comentada:

el 13 de Jul. de 2022

Community Treasure Hunt

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

Start Hunting!

Translated by