plotting a 3d graph for a 3d table
1 次查看(过去 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!