Fit in matlab equations
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
How can I fir cube equation in matlab
0 Kommentare
Antworten (1)
Daniel Pereira
am 17 Jul. 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 Kommentar
Siehe auch
Kategorien
Mehr zu Linear and Nonlinear Regression 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!