3D surface plot
Mostrar comentarios más antiguos
This is my code so far, how i can i create a 3D surface plot just like the figure below:
X=[1.000, 1.250, 1.500, 1.250, 1.500, 1.750]';
Y=[1.000, 1.000, 1.000, 1.500, 1.500, 1.500]';
Z=[42.2, 42.6, 43.2, 42.1, 42.4, 43.1]';
figure
plot3(X,Y,Z,'mo')
grid on
xlabel('cold water flowrate')
ylabel('hot water flowrate')
zlabel('temperature')

1 comentario
Dyuman Joshi
el 25 de Nov. de 2021
To create a surface place, your Z entry needs to be a matrix (atleast 2x2)
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Surface and Mesh Plots en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
