Filter löschen
Filter löschen

I seem to be getting quite different results when I use regress vs fitlm to do multivariate regression. Why?

2 Ansichten (letzte 30 Tage)
I am looking for a function suggestion for the best suited for this functionality
  2 Kommentare
Rajesh Rajaram
Rajesh Rajaram am 5 Apr. 2016
Bearbeitet: Walter Roberson am 6 Apr. 2016
I have a signal that I am thinking is a sum of 3 sine waves. The data is both not uniformly spaced and severely undersampled. So I can't use a DFT. Hence I used the following:
Signal = Signal - mean(Signal)
Coef_regress = regress(Signal',[SinWave1; CosWave1; SinWave2; CosWave2; SinWave3; CosWave3]')
Coef_fitlm = fitlm([SinWave1; CosWave1; SinWave2; CosWave2; SinWave3; CosWave3]',Signal')
Coef_regress_ones = regress(Signal',[ones(size(SinWave1)); SinWave1; CosWave1; SinWave2; CosWave2; SinWave3; CosWave3]')
The Coef_regress_ones matches with fitlm output, but with a large intercept value. But I already removed the mean value. I don't understand why.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Star Strider
Star Strider am 5 Apr. 2016
‘The Coef_regress_ones matches with fitlm output, but with a large intercept value. But I already removed the mean value. I don't understand why.’
We still don’t have your data.
Removing the mean would not remove a trend (linearly-increasing baseline).
  2 Kommentare
Rajesh Rajaram
Rajesh Rajaram am 6 Apr. 2016
Star Strider,
I really appreciate your effort to help me and I understand the value in showing the problem with actual data. Unfortunately, the data belongs to my company and I can't post it online. My hands are tied on that front.
As for linear trend, I am not able to follow your argument. I have only provided "ones" as one the input variables, which means its coefficient will only provide an offset to the predicted output. So the fact that I removed the mean should mean that the coefficient for it should've been 0.
I can understand that if I had provided the time stamps for my data as well as one of the input variables, then its coefficient would be the slope against time (signifying a linear trend).
Thanks again. I really do appreciate your help
Star Strider
Star Strider am 6 Apr. 2016
My pleasure.
Removing the mean does not necessarily mean that your signal does not have some sort of linear baseline trend.
Adding the ones vector allows the intercept to be estimated uniquely rather than being forced through zero. If you do not specify a ones column, the model forces a zero intercept.

Melden Sie sich an, um zu kommentieren.

Tags

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by