is it possible to multiply 2 symbolic polynomials?

54 次查看(过去 30 天)
for example if i have
f=[34 43 5]
%and
h=[32 34 4]
% i can use the (conv command) and obtain the resultant polynomial
fh=conv(f,h)
%what about
fsym=poly2sym(f)
%and
hsym=poly2sym(h)
is there any way i can multiply them ?

采纳的回答

Star Strider
Star Strider 2022-5-12
The easiest way to find out is to do the experiment —
syms x
f=[34 43 5]
f = 1×3
34 43 5
%and
h=[32 34 4]
h = 1×3
32 34 4
% i can use the (conv command) and obtain the resultant polynomial
fh=conv(f,h)
fh = 1×5
1088 2532 1758 342 20
%what about
fsym=poly2sym(f,x)
fsym = 
%and
hsym=poly2sym(h,x)
hsym = 
polyprod = fsym * hsym
polyprod = 
polyprod = expand(polyprod)
polyprod = 
polyprod = simplify(polyprod,500)
polyprod = 
.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Polynomials 的更多信息

产品


版本

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by