Search
Search Results
Search finished, found 15 page(s) matching the search query.
- numpy.polynomial.polynomial.polymul
...Polynomials Power Series (numpy.polynomial.polynomial) numpy.polynomial.polynomial.polymul...
- numpy.polynomial.polynomial.polymulx
...Polynomials Power Series (numpy.polynomial.polynomial) numpy.polynomial.polynomial.polymulx...
- numpy.polynomial.polynomial.polymul (Python function, in numpy.polynomial.polynomial.polymul)
- NumPy 1.20.0 Release Notes
...cients to np.float64. This affected the output dtype of methods which construct poly1d instances internally, such as np.polymul. (gh-17577) The numpy.i file for swig is Python 3 only. Uses of Python 2.7 C-API functions have been updated t...
- numpy.convolve
...onvolve two arrays using the Fast Fourier Transform. scipy.linalg.toeplitzUsed to construct the convolution operator. polymulPolynomial multiplication. Same output as convolve, but also accepts poly1d objects as input. Notes The discre...
- numpy.polydiv
...nts, 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 or 1), but u.ndim need not equal v.ndim. In o...
- numpy.polymul
...mPy reference Routines and objects by topic Polynomials Poly1d numpy.polymul...
- 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
...Polynomials Power Series (numpy.polynomial.polynomial) numpy.polynomial.polynomial.polymul...
- 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...
- numpy.polysub
...utndarray or poly1dArray or poly1d object of the difference polynomial’s coefficients. See also polyval, polydiv, polymul, polyadd Examples \[(2 x^2 + 10 x - 2) - (3 x^2 + 10 x -4) = (-x^2 + 2)\] >>> import numpy as np >>> np.pol...
- numpy.polynomial.polynomial.polymulx (Python function, in numpy.polynomial.polynomial.polymulx)