how to eliminate undesidered lines

1 visualización (últimos 30 días)
Tiziano Santese
Tiziano Santese el 19 de Oct. de 2019
Respondida: Image Analyst el 19 de Oct. de 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?

Respuestas (2)

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

Image Analyst
Image Analyst el 19 de Oct. de 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);

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by