how to create surface plot with NX3 matrix?
7 views (last 30 days)
Show older comments
how do I create a surface (surf) plot with a NX3 Matrix?
also how do i add a colorbar to this plot?
Thanks.
0 Comments
Answers (1)
Image Analyst
on 23 May 2014
surf(M);
colormap(jet(256));
colorbar;
2 Comments
Image Analyst
on 23 May 2014
You can use other functions to fancy it up. Though it adds other objects - not sure if that's neater or messier. But you can use xlabel(), ylabel(), title(), test(), annotation(), axis(), grid(), set(), etc.
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!