plotting a 3d graph for a 3d table
5 ビュー (過去 30 日間)
古いコメントを表示
I have a table and I want to plot a 3d graph for that.

0 件のコメント
採用された回答
Voss
2024 年 4 月 30 日
M = readmatrix('file.xlsx')
x = M(2:end,2);
y = M(1,3:end);
z = M(2:end,3:end);
figure
surf(x,y,z.')
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!