Creating 3-D surface and contour plot from csv
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I am trying to create surface from given xlsx file and should be looks similar to this and contour looks like this
0 commentaires
Réponses (1)
KALYAN ACHARJYA
le 10 Fév 2021
Modifié(e) : KALYAN ACHARJYA
le 10 Fév 2021
Please refer the MATLAB docs
data=readmatrix('180.xlsx');
figure,surf(data);
% Here matrix elements represent the heights (z direction)
See the contour function here
0 commentaires
Voir également
Catégories
En savoir plus sur Contour 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!