How can I expand x axis to have normal plot?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Jaehwi Bong
le 14 Mai 2019
Réponse apportée : Stephan
le 14 Mai 2019
I have 500 values of x and y.
When I plotted it, I got something weird plot.
What can I do for that?
t=data{:,1};
y=data{:,2};
plot(t,y)
0 commentaires
Réponse acceptée
Stephan
le 14 Mai 2019
A(:,1)=data{:,1};
A(:,2)=data{:,2};
A=sortrows(A,1);
plot(A(:,1),A(:,2))
0 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!