Search
Search Results
Search finished, found 12 page(s) matching the search query.
- numpy.polyder
...mPy reference Routines and objects by topic Polynomials Poly1d numpy.polyder...
- numpy.polyder (Python function, in numpy.polyder)
- numpy.polynomial.polynomial.polyder (Python function, in numpy.polynomial.polynomial.polyder)
- NumPy 1.5.0 Release Notes
...oncern themselves with the macro expansions and their side- effects. Changes polynomial.polynomial The polyint and polyder functions now check that the specified number integrations or derivations is a non-negative integer. The number...
- numpy.poly1d.deriv
...numpy.poly1d.deriv method poly1d.deriv(m=1)[source] Return a derivative of this polynomial. Refer to polyder for full documentation. See also polyderequivalent function...
- numpy.polyadd
...al coefficients 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.p...
- numpy.polyder
...mPy reference Routines and objects by topic Polynomials Poly1d numpy.polyder...
- numpy.polydiv
...mPy reference Routines and objects by topic Polynomials Poly1d numpy.polydiv...
- numpy.polyint
...efault), all constants are assumed to be zero. If m = 1, a single scalar can be given instead of a list. See also polyderderivative of a polynomial poly1d.integequivalent method Examples Try it in your browser! The defining prope...
- numpy.polymul
...al 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 paramete...
- numpy.polynomial.polynomial.polyder
...Polynomials Power Series (numpy.polynomial.polynomial) numpy.polynomial.polynomial.polyder...
- numpy.polynomial.polynomial.polyint
...y of the integral. Raises: ValueErrorIf m < 1, len(k) > m, np.ndim(lbnd) != 0, or np.ndim(scl) != 0. See also polyder Notes Note that the result of each integration is multiplied by scl. Why is this important to note? Say one...