how to plot connected points ?
Mostra commenti meno recenti
How do i plot(x,y) such that the points are connected to each other instead of from the origin ?

Risposta accettata
Più risposte (1)
Image Analyst
il 3 Mar 2017
If you want them going monotonically from left to right, then you can sort them.
[newX, sortOrder] = sort(x); % Sort x ascending.
newY = y(sortOrder); % Sort y in exactly the same order.
plot(newX, newY, 'b-*');
grid on;
Categorie
Scopri di più su 2-D and 3-D Plots in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!