Fit in matlab equations
Mostrar comentarios más antiguos
How can I fir cube equation in matlab
Respuestas (1)
Daniel Pereira
el 17 de Jul. de 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 comentario
Ede gerlderlands
el 17 de Jul. de 2013
Editada: Ede gerlderlands
el 17 de Jul. de 2013
Categorías
Más información sobre Regression en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!