How to estimate the similarity between two signals?

조회 수: 3 (최근 30일)
Masih
Masih 2011년 8월 4일
편집: Abbas Arghavani 2017년 1월 14일
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.

카테고리

Help CenterFile Exchange에서 Correlation and Convolution에 대해 자세히 알아보기

태그

아직 태그를 입력하지 않았습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by