This is documentation for an old release of NumPy (version 1.3.). Read this page in the documentation of the latest stable release (version > 1.17).
Returns sum of two polynomials.
Returns sum of polynomials; a1 + a2. Input polynomials are represented as an array_like sequence of terms or a poly1d object.
Parameters: | a1 : {array_like, poly1d}
a2 : {array_like, poly1d}
|
---|---|
Returns: | out : {ndarray, poly1d}
|