How can i 3d plot this table in matlab?
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Ali Moosazadeh
am 18 Feb. 2024
Kommentiert: Star Strider
am 18 Feb. 2024
I want to 3d plot this table in matlab.if any one can send me the code i will be appreciated.
0 Kommentare
Akzeptierte Antwort
Star Strider
am 18 Feb. 2024
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 Kommentare
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
