How to plot meshgrid without successive intervals
Afficher commentaires plus anciens
Respected sir,
My data set is X=1,1.5,2,2.5,3
Y=0.8351,0.8265,0.7569,0.6348,0.5219
Réponses (1)
KSSV
le 25 Août 2020
X=[1,1.5,2,2.5,3] ;
Y=[0.8351,0.8265,0.7569,0.6348,0.5219] ;
[X,Y] = meshgrid(X,Y) ;
plot(X,Y,'r',X',Y','r')
Catégories
En savoir plus sur 2-D and 3-D Plots dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!