I have three variable like x,y, z. I need to find a linear relation between them like z=c1*x+c2*y+c3. Please help. Thanks

 Réponse acceptée

JESUS DAVID ARIZA ROYETH
JESUS DAVID ARIZA ROYETH le 5 Nov 2019

0 votes

solution example:
x=rand(1,20);
y=rand(1,20);
z=3*x+4*y+7;
b=regress(z',[x' y' ones(size(x'))]);
fprintf('Equation is z=%0.2fx+%0.2fy+%0.2f\n',b)

2 commentaires

TRAILOKYA
TRAILOKYA le 5 Nov 2019
I have three data sets for x, y, z. I need to find z=f(x,y). Like the following z=x+c1*y-c2 (someone measured like this)
I dont understand why you have taken the coefficients for z already.
JESUS DAVID ARIZA ROYETH
JESUS DAVID ARIZA ROYETH le 5 Nov 2019
Modifié(e) : JESUS DAVID ARIZA ROYETH le 5 Nov 2019
because it is an example you can put anything in z and the program will look for the coefficients for you, x, y, z is your dataset

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Mathematics and Optimization 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!

Translated by