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!