how to create a surface plot?
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
to generate a surface plot where two horizontial axes are time (0:0.51:0.51*195), and lightning current between 0 to 150kA, and the vertical axis is displacement(-5:1:15).
and i try to write it, like this, but is wrong, how can i change it?
[X,Y] = meshgrid(0:0.51:0.51*195,-5:1:15);
Z = 0:150;
figure
surface(X,Y,Z);
0 comentarios
Respuestas (1)
Ver también
Categorías
Más información sobre Surface and Mesh 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!