how to compare two graphs in matlab?

I draw two graphs using plot function in matlab. I want to compare if any cut of two graphs occurs in a picture. How to perform this operation?

 採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2013 年 12 月 2 日

1 投票

If data are available, just compare your data, y1==y2 will not work. Try to find when y1-y2 is changing sign
Example
t=0:0.1:10;
y1=sin(t);
y2=cos(t);
plot(t,y1,t,y2);
a=sign(y1-y2);
ii=sort([strfind(a,[-1,1]),strfind(a,[1,-1])])
t(ii)

2 件のコメント

mayur
mayur 2013 年 12 月 2 日
Thanks A lot man :) It will help my Final year Master project
Walter Roberson
Walter Roberson 2016 年 7 月 15 日
ARUN MATHEW comments to Azzi:
it really helps

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

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File Exchange2-D and 3-D Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by