how to eliminate undesidered lines

1 view (last 30 days)
Tiziano Santese
Tiziano Santese on 19 Oct 2019
Answered: Image Analyst on 19 Oct 2019
my function is the quasi-sinusoidal signal but i don't want those lines which link the beginning and the end of the plot. What should I do?

Answers (2)

Star Strider
Star Strider on 19 Oct 2019
Use the sort or sortrows function to sort your data by the independent variable values.

Image Analyst
Image Analyst on 19 Oct 2019
It looks like the last point is the same as the first. You could just plot all except the last point:
plot(x(end-1), y(end-1), 'g-', 'LineWidth', 2);

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!