Signal similarity analysis after cross correlation

3 ビュー (過去 30 日間)
Sreeraj Arole
Sreeraj Arole 2019 年 11 月 8 日
コメント済み: Sreeraj Arole 2019 年 11 月 11 日
I have a time series signal and using this as reference, from the main data set extracted possible matching sections using cross correlation technique.(xcorr ).Based on the threshold xcorr value used, it may contain some not-matching signals as well(slight difference).
I am looking for a way to further analyse the output and remove the not-matching signals. Any better way to do that ? Since I used cross correlation method(mathematical) would it be beneficial to use image analysis of the two signals ?
Reference picture attached.

採用された回答

Daniel M
Daniel M 2019 年 11 月 8 日
Wouldn't it work just to set the threshold higher?
It depends on what you mean by matching. If you want the exact same signal, you could just take the residuals of reference signal and the candidate signal and check if the max(abs()) value is less than some tolerance level.
For example:
res = abs(refWave-candidateWave);
if max(res) > 10*eps
fprintf('These two waves do not match according to the criteria.\n')
end
  3 件のコメント
Daniel M
Daniel M 2019 年 11 月 10 日
Similar shape but not exact shape. Well whenever you determine your criteria, people can help you code it.
Sreeraj Arole
Sreeraj Arole 2019 年 11 月 11 日
Sorry, bit confusing isn't it !! So is my requirment :) ! ! Needed a bit more work around on the input data before the cross correlation. fiugred it out. Thanks for your inputs.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCorrelation and Convolution についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by