how to create a surface plot?
Show older comments
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);
Answers (1)
Cris LaPierre
on 11 Dec 2018
0 votes
Here are a few posts from this week:
Categories
Find more on Surface and Mesh Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!