plotting a 3d graph for a 3d table
8 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I have a table and I want to plot a 3d graph for that.

0 commentaires
Réponse acceptée
Voss
le 30 Avr 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 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
