how to plot connected points ?
Ältere Kommentare anzeigen
How do i plot(x,y) such that the points are connected to each other instead of from the origin ?

Akzeptierte Antwort
Weitere Antworten (1)
Image Analyst
am 3 Mär. 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;
Kategorien
Mehr zu 2-D and 3-D Plots finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!