How can i 3d plot this table in matlab?
조회 수: 7 (최근 30일)
이전 댓글 표시
I want to 3d plot this table in matlab.if any one can send me the code i will be appreciated.
댓글 수: 0
채택된 답변
Star Strider
2024년 2월 18일
Try this —
A1 = readmatrix('cc.csv');
x = A1(1,2:end);
y = A1(2:end,1);
z = A1(2:end,2:end);
figure
surf(x,y,z, 'EdgeColor','none')
colormap(turbo)
xlabel('X')
ylabel('Y')
zlabel('Z')
colorbar
.
댓글 수: 2
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
