3D plot of output variables
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
I will like to plot my output variables in a 3-D graph. I have not quite figure out how to do it.
Please find attached the matlab file. 't' is the time. 'Y1' and 'Y2' are the outputs.
Please see a template of the graph.
0 comentarios
Respuestas (1)
Simon Chan
el 6 de Nov. de 2022
Try function plot3
data = load('Output100.mat');
plot3(data.Y1,data.Y2,data.t);
0 comentarios
Ver también
Categorías
Más información sobre Line Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!