how to create a surface plot?
6 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposte (1)
Vedere anche
Categorie
Scopri di più su Surface and Mesh Plots in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!