Data point in plot connecting randomly to each other

2 ビュー (過去 30 日間)
Timothy Lim
Timothy Lim 2019 年 1 月 21 日
コメント済み: Kevin Phung 2019 年 1 月 21 日
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 件のコメント
madhan ravi
madhan ravi 2019 年 1 月 21 日
show your plot call
Timothy Lim
Timothy Lim 2019 年 1 月 21 日
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 件のコメント
Timothy Lim
Timothy Lim 2019 年 1 月 21 日
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.
Kevin Phung
Kevin Phung 2019 年 1 月 21 日
No problemo amigo

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeShifting and Sorting Matrices についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by