OCTAVE :: DECONV - Deconvolution to the Coefficients of the Polynomial Quotient INDEX
    INPUT: octave: > deconv ()
    Function: [ B, R ] = deconv( Y, A )

    • If Y and A are polynomial coefficient vectors,
      B will contain the coefficients of the polynomial quotient
      and R will be a remenber polynomial of lowest order.
    • y = conv ( a, b ) + r

    Example:
        octave: > deconv( [1 2 1], [1 1] )
        ans =
         1  1
        
         
    See Also:
    • OCTAVE :: CONV ... The Coefficients of the Product Polynomial
OCTAVE :: DECONV