How can I do this polynomial with sympolic in matlab

2 ビュー (過去 30 日間)
Adham Ahmed
Adham Ahmed 2023 年 1 月 19 日
回答済み: Walter Roberson 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 +…….=
  2 件のコメント
Torsten
Torsten 2023 年 1 月 19 日
編集済み: Torsten 2023 年 1 月 19 日
Unclear.
Which polynomial ?
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 件のコメント
Adham Ahmed
Adham Ahmed 2023 年 1 月 20 日
Many thanks my dear friend
KSSV
KSSV 2023 年 1 月 20 日
Thanks is accepting/ voting the answer.. :)

サインインしてコメントする。

その他の回答 (1 件)

Walter Roberson
Walter Roberson 2023 年 1 月 20 日
if you have numeric coefficients see poly2sym()

カテゴリ

Help Center および File ExchangePolynomials についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by