필터 지우기
필터 지우기

find the intersection of two curves

조회 수: 13 (최근 30일)
tala
tala 2018년 6월 17일
댓글: Ameer Hamza 2018년 6월 17일
hello. i have 2 curves which are drawn amplitude against samples. how can i find the intersection of samples in 2 curves? i mean i want to find that which samples of 2 curves have same amplitudes each of curves are the size 1*53
load s1w; load s2w;
plot (s1w,'.b-'); hold on; plot (s2w,'.r-');

채택된 답변

Ameer Hamza
Ameer Hamza 2018년 6월 17일
Since samples of s1w and s2w are not exactly equal, you will need to define a tolerance value to find the point of intersection i.e. how much difference between value can still be treated as equal. In this case, following is one of the possible solutions
tol < 0.1; % change tolerance as required.
index = abs(s1w-s2w) < tol;
indexNumeric = find(index);
this will give you index from both vectors where values are almost equal.
  댓글 수: 2
tala
tala 2018년 6월 17일
really thanks sir, it works for me
Ameer Hamza
Ameer Hamza 2018년 6월 17일
You are welcome.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Get Started with Signal Processing Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by