how to create surface plot with NX3 matrix?
7 ビュー (過去 30 日間)
古いコメントを表示
how do I create a surface (surf) plot with a NX3 Matrix?
also how do i add a colorbar to this plot?
Thanks.
0 件のコメント
回答 (1 件)
Image Analyst
2014 年 5 月 23 日
surf(M);
colormap(jet(256));
colorbar;
2 件のコメント
Image Analyst
2014 年 5 月 23 日
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.
参考
カテゴリ
Help Center および File Exchange で Surface and Mesh Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!