How Can I define a Polynomial of degree n with symbolic coefficients?

11 次查看(过去 30 天)
Hi guys, How can I define a polynomial of degree n with symbolic coefficients. For example, if n=2, P= ax*2+bx+c
Thanks

采纳的回答

John D'Errico
John D'Errico 2014-2-25
编辑:John D'Errico 2014-2-25
Whats the problem? This seems clear.
syms x a b c
P = a*x^2+b*x+c;
Are you looking for a general solution for any n? This seems to work:
n = 3;
syms x
P = sym('a',[1,n+1])*x.^(n:-1:0).'
P =
a1*x^3 + a2*x^2 + a3*x + a4

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Polynomials 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by