フィルターのクリア

Plotting doubt: making a curve with points

2 ビュー (過去 30 日間)
Andoni Mendialdua
Andoni Mendialdua 2014 年 8 月 22 日
回答済み: Star Strider 2014 年 8 月 22 日
Hi all, I have the following code:
figure
COPlin=Y./Yg;
plot(AATnew,COPlin)
axis([-10 80 0 1])
I want to make a curve, but Matlab is doing lot of lines between the points. What I want to obtain is a unique curve that put together all the points.
I would be glad if you could help me:)
  2 件のコメント
Michael Haderlein
Michael Haderlein 2014 年 8 月 22 日
what's the size of COPlin and AATew?
Andrew Reibold
Andrew Reibold 2014 年 8 月 22 日
Not enough information. You could model with a polynomial but we couldn't possibly guess at what order it needs to be. You could model with moving line average curve smoothing but we have no idea the size of these arrays or their features/values to know what would work. You could try interpolation but we again dont know enough about your problem to know what would be best.

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

採用された回答

Star Strider
Star Strider 2014 年 8 月 22 日
I am not exactly certain what the problem is, but if my guess is correct, the sort function may be the solution:
AATnew = randi(90,20,1)-10; % ‘AATnew’ is a (20x1) array
COPlin = rand(20,1); % ‘COPlin’ is a (20x1) array
[Ms,Mi] = sort(AATnew); % Sort ‘AATnew’, keeping indices
figure(1)
plot(AATnew,COPlin,'-*') % Plot Original UNSORTED data
grid
figure(2)
plot(AATnew(Mi),COPlin(Mi),'-*') % Plot SORTED data
grid

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDiscrete Data Plots についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by