Calculate difference between two signals

17 ビュー (過去 30 日間)
Nimish Iwale
Nimish Iwale 2019 年 7 月 17 日
回答済み: Star Strider 2019 年 7 月 17 日
What and how would be the best way to calculate the difference between the 2 signals (A and B) shown below in terms of percentage difference or a factor of comparison?
Q&A.JPG

回答 (1 件)

Star Strider
Star Strider 2019 年 7 月 17 日
I would compare them by noting that the amplitudes of the peaks vary with respect to the independent variable, similarly for both ‘A’ and ‘B’. One way would be to do a simple linear regression of one against the other:
P = [A(:) ones(size(A(:)))] \ B(:) % P(1) = Slope, P(2) = Intercept
another would be to regress both of them with respect to the independent variable (assumed here to be ‘x’):
Pa = [x(:) ones(size(x(:)))] \ A(:) % Pa(1) = Slope, Pa(2) = Intercept
Pb = [x(:) ones(size(x(:)))] \ B(:) % Pb(1) = Slope, Pb(2) = Intercept
A direct point-by-point difference or a single statistic (for example mean of the difference between them) would not capture their both changing over the independent variable at different rates, and with respect to each other.

カテゴリ

Help Center および File ExchangeDescriptive Statistics についてさらに検索

製品


リリース

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by