필터 지우기
필터 지우기

How can I do this polynomial with sympolic in matlab

조회 수: 1 (최근 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()

태그

Community Treasure Hunt

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

Start Hunting!

Translated by