How to avoid the mistake plot if one x value corresponding to two or more y values?
Afficher commentaires plus anciens
Dear all,
I am ploting the figures but there is a problem that I am encountering. I don't know how to solve it. Hope anyone can give me some tips. Appreciate.
wrong
correctRéponses (1)
the cyclist
le 3 Nov 2021
If the density of your points is high enough, you could consider plotting only the markers, and not the connecting lines, e.g.
plot(x,y,'.')
If that doesn't work, do you have a third variable that indicates the proper order to connect the points? If so, then sort x and y by that variable. If not, I don't know how one could know which points to connect.
2 commentaires
kimy
le 3 Nov 2021
the cyclist
le 3 Nov 2021
I don't understand what you mean by "the third variable could be the order of each line". Do you mean your variable VarName3? Can you infer the variable ordering from it?
Catégories
En savoir plus sur Spline Postprocessing 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!