How can I do this polynomial with sympolic in matlab

1 Ansicht (letzte 30 Tage)
Adham Ahmed
Adham Ahmed am 19 Jan. 2023
Beantwortet: Walter Roberson am 20 Jan. 2023
How can I do this polynomial with sympolic in matlab
Z= P­0 x0 + P­1 x1 +P­2 x2 + P3 x3 +…….=
  2 Kommentare
Torsten
Torsten am 19 Jan. 2023
Bearbeitet: Torsten am 19 Jan. 2023
Unclear.
Which polynomial ?
Adham Ahmed
Adham Ahmed am 20 Jan. 2023
How can I do this polynomial with sympolic in matlab
Z= P­0 x0 + P­1 x1 +P­2 x2 + P3 x3 +…….=

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

KSSV
KSSV am 20 Jan. 2023
p = sym('P',[1 4]) ;
x = sym('x',[1 4]) ;
f = p*x.'
f = 
  4 Kommentare
Adham Ahmed
Adham Ahmed am 20 Jan. 2023
Many thanks my dear friend
KSSV
KSSV am 20 Jan. 2023
Thanks is accepting/ voting the answer.. :)

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Walter Roberson
Walter Roberson am 20 Jan. 2023
if you have numeric coefficients see poly2sym()

Kategorien

Mehr zu Polynomials finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by