Search
Search Results
Search finished, found 14 page(s) matching the search query.
- numpy.polyadd
...mPy reference Routines and objects by topic Polynomials Poly1d numpy.polyadd...
- numpy.polyadd (Python function, in numpy.polyadd)
- numpy.polynomial.polynomial.polyadd (Python function, in numpy.polynomial.polynomial.polyadd)
- numpy.polyadd
...mPy reference Routines and objects by topic Polynomials Poly1d numpy.polyadd...
- numpy.polydiv
...to zero, of the quotient. rndarrayCoefficients, including those equal to zero, of the remainder. See also poly, polyadd, polyder, polydiv, polyfit, polyint, polymul, polysub polyval Notes Both u and v must be 0-d or 1-d (ndim = 0...
- numpy.polymul
...polynomial coefficients from highest to lowest degree. See also poly1dA one-dimensional polynomial class. poly, polyadd, polyder, polydiv, polyfit, polyint, polysub, polyval convolveArray convolution. Same output as polymul, but has...
- numpy.polynomial.polynomial.polyadd
...Polynomials Power Series (numpy.polynomial.polynomial) numpy.polynomial.polynomial.polyadd...
- numpy.polynomial.polynomial.polydiv
...w to high. Returns: [quo, rem]ndarraysOf coefficient series representing the quotient and remainder. See also polyadd, polysub, polymulx, polymul, polypow Examples Try it in your browser! >>> from numpy.polynomial import polyno...
- numpy.polynomial.polynomial.polymul
...ordered from lowest order term to highest. Returns: outndarrayOf the coefficients of their product. See also polyadd, polysub, polymulx, polydiv, polypow Examples Try it in your browser! >>> from numpy.polynomial import polyno...
- numpy.polynomial.polynomial.polymulx
...ts ordered from low to high. Returns: outndarrayArray representing the result of the multiplication. See also polyadd, polysub, polymul, polydiv, polypow Examples Try it in your browser! >>> from numpy.polynomial import polynom...
- numpy.polynomial.polynomial.polypow
...growth of the series to unmanageable size. Default is 16 Returns: coefndarrayPower series of power. See also polyadd, polysub, polymulx, polymul, polydiv Examples Try it in your browser! >>> from numpy.polynomial import polyno...
- numpy.polynomial.polynomial.polysub
...ficients ordered from low to high. Returns: outndarrayOf coefficients representing their difference. See also polyadd, polymulx, polymul, polydiv, polypow Examples Try it in your browser! >>> from numpy.polynomial import polyno...
- numpy.polysub
...or poly1dArray or poly1d object of the difference polynomial’s coefficients. See also polyval, polydiv, polymul, polyadd Examples Try it in your browser! \[(2 x^2 + 10 x - 2) - (3 x^2 + 10 x -4) = (-x^2 + 2)\] >>> import numpy as...
- Polynomials
...the numpy.poly1d class and the polynomial functions prefixed with poly accessible from the numpy namespace (e.g. numpy.polyadd, numpy.polyval, numpy.polyfit, etc.). The term polynomial package refers to the new API defined in numpy.polynom...