Search
Search Results
Search finished, found 13 page(s) matching the search query.
- numpy.polydiv
...mPy reference Routines and objects by topic Polynomials Poly1d numpy.polydiv...
- numpy.polydiv (Python function, in numpy.polydiv)
- numpy.polynomial.polynomial.polydiv (Python function, in numpy.polynomial.polynomial.polydiv)
- numpy.polyadd
...cients from highest to lowest degree. See also poly1dA one-dimensional polynomial class. poly, polyadd, polyder, polydiv, polyfit, polyint, polysub, polyval Examples Try it in your browser! >>> import numpy as np >>> np.polyadd([1...
- numpy.polydiv
...mPy reference Routines and objects by topic Polynomials Poly1d numpy.polydiv...
- numpy.polymul
...cients 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 parameter for ove...
- numpy.polynomial.polynomial.polyadd
...o high. Returns: outndarrayThe coefficient array representing their sum. See also polysub, polymulx, polymul, polydiv, polypow Examples Try it in your browser! >>> from numpy.polynomial import polynomial as P >>> c1 = (1, 2, 3)...
- numpy.polynomial.polynomial.polydiv
...Polynomials Power Series (numpy.polynomial.polynomial) numpy.polynomial.polynomial.polydiv...
- numpy.polynomial.polynomial.polymul
...erm 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 polynomial as P >>> c1 = (1, 2, 3)...
- numpy.polynomial.polynomial.polymulx
.... 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 polynomial as P >>> c = (1, 2, 3)...
- numpy.polynomial.polynomial.polypow
...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 polynomial as P >>> P.polypow([1, 2, 3], 2)...
- numpy.polynomial.polynomial.polysub
...high. Returns: outndarrayOf coefficients representing their difference. See also polyadd, polymulx, polymul, polydiv, polypow Examples Try it in your browser! >>> from numpy.polynomial import polynomial as P >>> c1 = (1, 2, 3)...
- numpy.polysub
...turns: outndarray 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)\] >...