How to estimate the similarity between two signals?
3 views (last 30 days)
Show older comments
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 Comment
Daniel Shub
on 5 Aug 2011
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?
Answers (3)
Desiree
on 5 Aug 2011
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.
0 Comments
Abbas Arghavani
on 14 Jan 2017
Edited: Abbas Arghavani
on 14 Jan 2017
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.
0 Comments
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!