Filter löschen
Filter löschen

I have values for three different variables Z ,X,Y : how can i get the least square regression equation of Z on X and Y

2 Ansichten (letzte 30 Tage)
I have values for three different variables Z ,X,Y : how can i get the least square regression equation of Z on X and Y

Antworten (2)

the cyclist
the cyclist am 2 Jun. 2013
Bearbeitet: the cyclist am 2 Jun. 2013
You could use either the regress() function or the LinearModel.fit() function.
doc regress
or
doc LinearModel.fit
for details.
In each case, you'll need to combine your X and Y values into one array (predictor variables) and use Z for the response variable.

Image Analyst
Image Analyst am 2 Jun. 2013

Kategorien

Mehr zu Linear Algebra finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by