How can I do this polynomial with sympolic in matlab

1 次查看(过去 30 天)
How can I do this polynomial with sympolic in matlab
Z= P­0 x0 + P­1 x1 +P­2 x2 + P3 x3 +…….=
  2 个评论
Adham Ahmed
Adham Ahmed 2023-1-20
How can I do this polynomial with sympolic in matlab
Z= P­0 x0 + P­1 x1 +P­2 x2 + P3 x3 +…….=

请先登录,再进行评论。

采纳的回答

KSSV
KSSV 2023-1-20
p = sym('P',[1 4]) ;
x = sym('x',[1 4]) ;
f = p*x.'
f = 
  4 个评论

请先登录,再进行评论。

更多回答(1 个)

Walter Roberson
Walter Roberson 2023-1-20
if you have numeric coefficients see poly2sym()

标签

Community Treasure Hunt

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

Start Hunting!

Translated by