Fit in matlab equations
Mostra commenti meno recenti
How can I fir cube equation in matlab
Risposte (1)
Daniel Pereira
il 17 Lug 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 Commento
Ede gerlderlands
il 17 Lug 2013
Modificato: Ede gerlderlands
il 17 Lug 2013
Categorie
Scopri di più su Least Squares in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!