Fit in matlab equations
Afficher commentaires plus anciens
How can I fir cube equation in matlab
Réponses (1)
Daniel Pereira
le 17 Juil 2013
Did you try
z = x^-3;
p = polyfit(z,y,1)
then
yy = p(1) * z + p(2);
which has the form
yy = a * x.^-3 + b;
1 commentaire
Ede gerlderlands
le 17 Juil 2013
Modifié(e) : Ede gerlderlands
le 17 Juil 2013
Catégories
En savoir plus sur Regression 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!