plotting a 3d graph for a 3d table
11 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I have a table and I want to plot a 3d graph for that.

0 Kommentare
Akzeptierte Antwort
Voss
am 30 Apr. 2024
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.')
2 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
