Best Cubic Polynomial fitting
Mostrar comentarios más antiguos
I have a data set (a versus b, see the attached file and the attached figure).
I want to find the coefficients p and q of the cubic polynomial b=p*a+q*a^3 that fits the data. Please help.
I want to find the coefficients p and q of the cubic polynomial b=p*a+q*a^3 that fits the data. Please help. Respuestas (1)
Torsten
el 22 de En. de 2019
0 votos
mat = [a a.^3];
rhs = b;
sol = mat\rhs;
p = sol(1)
q = sol(2)
fun=@(x) p*x + q*x.^3;
bb = fun(a);
plot(a,b,a,bb)
Categorías
Más información sobre Linear and Nonlinear 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!