how to plot a 3D surface from N by 3 matrix
6 ビュー (過去 30 日間)
古いコメントを表示
I have a matrix with dimensions N by 3, for example 100 rows and 3 columns. Each row correspondds to the 3D location of a point, i.e., we have 100 points. I want to pot the 100 points and connect them as a surface.
0 件のコメント
採用された回答
AdamG2013468
2019 年 8 月 22 日
Try,
S = size(matrix); %"matrix being your generic matrix
[X, Y] = meshgrid(1:S(2), 1:S(1));
Z = matrix; %e.g. 100 by 3 matrix
surf(X,Y,Z)
2 件のコメント
AdamG2013468
2019 年 8 月 22 日
You should be able to use the code above, adjusting for your desired X, Y, Z axes values accordingly.
その他の回答 (1 件)
参考
カテゴリ
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!