Я хочу разделить p(x)
на q(x)
, учитывая, что:
p(x)=-5x^4+3x^2-6x
q(x)=x^2+1
Я пытался:
p=inline('-5*(x^4)+3*(x^2)','x')
p =
Inline function:
p(x) = -5*(x^4)+3*(x^2)
q=inline('x^2+1','x')
q =
Inline function:
q(x) = x^2+1
deconv(p,q)
но получил ошибку:
??? Undefined function or method 'filter' for input arguments of type 'inline'.
Error in ==> deconv at 32
[q,zf] = filter(b, a, [1 zeros(1,nb-na)]);
Почему?