how to create a surface plot?
6 views (last 30 days)
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);
0 Comments
Answers (1)
See Also
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!