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

 Réponse acceptée

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 commentaires

Ali Moosazadeh
Ali Moosazadeh le 18 Fév 2024
Thanks
Star Strider
Star Strider le 18 Fév 2024
As always, my pleasure!

Connectez-vous pour commenter.

Plus de réponses (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by