Data point in plot connecting randomly to each other

The pattern of the plot is obviously going up from 0-2 then all the way down, I do not know why are the points randomly connecting to a point further away and not connecting like it used to (by ascending order).

댓글 수: 4

Try sorting the data.....else attach your data and show us your expectations.
The data is basically a 30x1 double against a 30x1 double. Must I sort the data with an ascending order to use the plot function?
I have also tried scatter and then line function but it comes down to the same result.
Capture.PNG
The dotted points obviously can be connected smoothly but MATLAB is weirdly connecting the points randomly instead.
show your plot call
plot(ratio_1,f1_1) - gives me the random connecting lines. Image in my question
plot(ratio_1,f1_1,'o') - gives me the circular data point. Image in my first reply.

댓글을 달려면 로그인하십시오.

 채택된 답변

Kevin Phung
Kevin Phung 2019년 1월 21일
I would sort the x values and sort the y values based on how the x values were sorted.
You can do this with
[sorted_array sorted_order] = sort(x);
y = y(sorted_order;)

댓글 수: 3

Wow that solved the problem, I'm amaze that it was so easy to sort X and make sure that Y array will follow the sorting.
I always thought that MATLAB automatically arranges the data and interpolate it accordingly. I now know that the data has to be arranged in an ascending order for the plot function to work.
I'll accept the answer in an hour if no one is able to give a more convenient way (no need for any sorting, direct plotting based off the array relationship).
Thanks for the answer mate.
No problemo amigo

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Annotations에 대해 자세히 알아보기

제품

태그

질문:

2019년 1월 21일

댓글:

2019년 1월 21일

Community Treasure Hunt

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

Start Hunting!

Translated by