필터 지우기
필터 지우기

Polynomial as product of two vectors

조회 수: 3 (최근 30일)
Aleem Andrew
Aleem Andrew 2020년 11월 11일
댓글: Aleem Andrew 2020년 11월 11일
I am trying to display a polynomial as the product of two vectors.
a = [1 2 3 4 ];
syms x
f = [x,x^3,x,x^3]';
a.*f
The output should be x + 2x^3 + 3x +4x^3 but instead a number of vectors are output and f(x) is output as conj(f(x)). Writing instead a*f results in the correct output but f(x) is still displayed as conj(f(x)). Can someone explain how this issue can be fixed?

채택된 답변

Bruno Luong
Bruno Luong 2020년 11월 11일
Try this
a = [1 2 3 4 ];
syms x
f = [x,x^3,x,x^3].';
a*f

추가 답변 (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