plotting a 3d graph for a 3d table
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
I have a table and I want to plot a 3d graph for that.
0 Commenti
Risposta accettata
Voss
il 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.')
Più risposte (0)
Vedere anche
Categorie
Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!