Degrees or Radians for angle data?
Afficher commentaires plus anciens
I'm calculaing regression coefficients from three sets of angle data ([1 x 20] each) as predictor variables using the following code:
X = [ones(length(x1),1) x1' x2' x3'];
B = X\devY';
However, the coefficients obtained are completely different depending on whether I input the angle data as degrees or radians. Therefore,
1) Why does the change in units result in a large difference in the coefficients based on the same data? 2) The different coefficients mean I need to justify the units I will be using to calculate the coeffcients. Any help here would be appreciated.
Any help would be appreciated.
3 commentaires
Walter Roberson
le 3 Avr 2013
Image Analyst
le 3 Avr 2013
Do you also change the units of devY when you change the units of X?
Tim Bennett
le 4 Avr 2013
Réponses (1)
the cyclist
le 3 Avr 2013
0 votes
Are you able to supply a small dataset that shows the problem you are talking about? As you describe it, a uniform factor (unit change) should certainly not affect the coefficients of your model.
7 commentaires
Tim Bennett
le 4 Avr 2013
Tim Bennett
le 4 Avr 2013
Tim Bennett
le 4 Avr 2013
Tim Bennett
le 4 Avr 2013
Tim Bennett
le 4 Avr 2013
the cyclist
le 4 Avr 2013
Modifié(e) : the cyclist
le 4 Avr 2013
Your coefficients simply differ from each other by a factor of 180/pi, the conversion from radians to degrees. This is exactly as expected.
These coefficients presumably have units, just as the inputs do.
Matt Tearle
le 4 Avr 2013
What the cyclist said. If you're solving Xb = y for b and X is in degrees and y is in meters, then b is in meters/degree. Switch X to radians and b will have to change to meters/radian as well.
Catégories
En savoir plus sur Calendar dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!