OCTAVE :: CONV - The Coefficients of the product polynomial INDEX
    INPUT: octave: > conv ()
    Function: conv( A, B )

    • The Coefficients of the Product Polynomial.

    Example:
        octave: > conv( [1 1], [1 1] )
        ans =
         1 2 1
        
        octave: > conv( [1 2 1], [1 1] )
        ans =
         1 3 3 1
        
        octave: > conv( [1 3 3 1], [1 1] )
        ans =
         1 4 6 4 1
        
         

    See Also:
    • OCTAVE :: DECONV ... Deconvolution to the Coefficients of the Polynomial Quotient
OCTAVE :: CONV