Search
Search Results
Search finished, found 9 page(s) matching the search query.
- numpy.polynomial.polynomial.polymulx
...Polynomials Power Series (numpy.polynomial.polynomial) numpy.polynomial.polynomial.polymulx...
- numpy.polynomial.polynomial.polymulx (Python function, in numpy.polynomial.polynomial.polymulx)
- NumPy 1.5.0 Release Notes
...used in both polyfit and Polynomial.fit A linspace method has been added to the Polynomial class to ease plotting. The polymulx function was added. polynomial.chebyshev The chebint and chebder functions now check that the specified num...
- numpy.polynomial.polynomial.polyadd
...ordered from low to high. Returns: outndarrayThe coefficient array representing their sum. See also polysub, polymulx, polymul, polydiv, polypow Examples >>> from numpy.polynomial import polynomial as P >>> c1 = (1, 2, 3) >>> c...
- numpy.polynomial.polynomial.polydiv
...rns: [quo, rem]ndarraysOf coefficient series representing the quotient and remainder. See also polyadd, polysub, polymulx, polymul, polypow Examples >>> from numpy.polynomial import polynomial as P >>> c1 = (1, 2, 3) >>> c2 = (3, 2...
- numpy.polynomial.polynomial.polymul
...st order term to highest. Returns: outndarrayOf the coefficients of their product. See also polyadd, polysub, polymulx, polydiv, polypow Examples >>> from numpy.polynomial import polynomial as P >>> c1 = (1, 2, 3) >>> c2 = (3, 2...
- numpy.polynomial.polynomial.polymulx
...Polynomials Power Series (numpy.polynomial.polynomial) numpy.polynomial.polynomial.polymulx...
- numpy.polynomial.polynomial.polypow
...ies to unmanageable size. Default is 16 Returns: coefndarrayPower series of power. See also polyadd, polysub, polymulx, polymul, polydiv Examples >>> from numpy.polynomial import polynomial as P >>> P.polypow([1, 2, 3], 2) array...
- numpy.polynomial.polynomial.polysub
...ordered from low to high. Returns: outndarrayOf coefficients representing their difference. See also polyadd, polymulx, polymul, polydiv, polypow Examples >>> from numpy.polynomial import polynomial as P >>> c1 = (1, 2, 3) >>> c...