I want to divide p(x)
by q(x)
given that:
p(x)=-5x^4+3x^2-6x
q(x)=x^2+1
I tried:
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)
but got error:
??? 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)]);
WHY?