How to estimate the similarity between two signals?

26 次查看(过去 30 天)
I have many sine wave signals, which have different phase, amplitude,frequency and also affected by noise. There is a reference sine wave which is defined as ideal one.I really need to find the best noisy sine wave that have highest similarity to the reference sine wave. Could you help about the MATLAB program to come up related this problem?
  1 个评论
Daniel Shub
Daniel Shub 2011-8-5
You need to define similarity. If one signal has a 10% difference in amplitude and another a 10% difference in frequency, which is more similar?

请先登录,再进行评论。

回答(3 个)

Desiree
Desiree 2011-8-5
Calculating the correlation coefficient might be a start. You can use corrcoef function for that. If the signal gets more complicated you might wanna look into other methods as well. Frequency analysis, spectral estimates but maybe also more simple statistics functions (f.ex. standard deviation) might help you there. Apart from basic MATLAB Statistics Toolbox and Signal Processing Toolbox might be of help here.

Image Analyst
Image Analyst 2011-8-5
You could try using the PSNR http://en.wikipedia.org/wiki/PSNR

Abbas Arghavani
Abbas Arghavani 2017-1-14
编辑:Abbas Arghavani 2017-1-14
I think it highly depends on the definition of similarity you are looking for. Sometimes you look for a signal (say s1) to help you to estimate another signal (say s0). Generally, I suggest cross-correlation to find the phase shift (lag) between all existing signals (si) and s0. When you find the lag, you easily can shift the signals and calculate the Pearson's correlation coefficient using coe_i = corrcoef(si, s0) function. The signal i with the biggest abs(coe_i) is the most simillar signal to s0.

标签

尚未输入任何标签。

Community Treasure Hunt

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

Start Hunting!

Translated by