I want to 3d plot this table in matlab.if any one can send me the code i will be appreciated.

 채택된 답변

Star Strider
Star Strider 2024년 2월 18일

0 개 추천

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
.

추가 답변 (0개)

카테고리

태그

질문:

2024년 2월 18일

댓글:

2024년 2월 18일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by