Search
Search Results
Search finished, found 30 page(s) matching the search query.
- numpy.polynomial.polynomial.Polynomial.linspace
...nomial.polynomial) numpy.polynomial.polynomial.Polynomial numpy.polynomial.polynomial.Polynomial.linspace...
- numpy.polynomial.chebyshev.Chebyshev.linspace (Python method, in numpy.polynomial.chebyshev.Chebyshev.linspace)
- numpy.polynomial.hermite.Hermite.linspace (Python method, in numpy.polynomial.hermite.Hermite.linspace)
- numpy.polynomial.hermite_e.HermiteE.linspace (Python method, in numpy.polynomial.hermite_e.HermiteE.linspace)
- numpy.polynomial.laguerre.Laguerre.linspace (Python method, in numpy.polynomial.laguerre.Laguerre.linspace)
- numpy.polynomial.legendre.Legendre.linspace (Python method, in numpy.polynomial.legendre.Legendre.linspace)
- numpy.polynomial.polynomial.Polynomial.linspace (Python method, in numpy.polynomial.polynomial.Polynomial.linspace)
numpy.polynomial
...atch Poly.has_sametype(p1, p2) – Check if types match Poly.has_samewindow(p1, p2) – Check if windows match Misc p.linspace() – Return x, p(x) at equally-spaced points in domain p.mapparms() – Return the parameters for the linear mappi...
- Array creation
...they create: 1D arrays 2D arrays ndarrays 1 - 1D array creation functions The 1D array creation functions e.g. numpy.linspace and numpy.arange generally need at least two inputs, start and stop. numpy.arange creates arrays with regularly...
- NumPy 1.12.0 Release Notes
...s pointed out in gh-7083. Such a capability will be removed in the future. Unsafe int casting of the num attribute in linspace np.linspace now raises DeprecationWarning when num cannot be safely interpreted as an integer. Insufficient b...
- NumPy 1.16.0 Release Notes
...he same BLAS routines as numpy.dot, ensuring its performance is similar for large matrices. Start and stop arrays for linspace, logspace and geomspace These functions used to be limited to scalar stop and start values, but can now take ar...
- NumPy 1.20.0 Release Notes
...vide(1.0, 0.0) Invalid Dividebyzero nan inf Yes np.remainder(1.0, 0.0) Invalid Invalid nan nan Yes (gh-16161) np.linspace on integers now uses floor When using a int dtype in numpy.linspace, previously float values would be rounded t...
- NumPy 1.21.0 Release Notes
.... This is especially useful for unwrapping degrees, but can also be used for other intervals. >>> phase_deg = np.mod(np.linspace(0,720,19), 360) - 180 >>> phase_deg array([-180., -140., -100., -60., -20., 20., 60., 100., 140.,...
- NumPy 1.5.0 Release Notes
...omial domain can be specified by using [] as the domain value. Weights can be 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....
- NumPy 1.9.0 Release Notes
...argument was also added to allow convenient broadcasting to arrays of the original shape. Dtype parameter added to np.linspace and np.logspace The returned data type from the linspace and logspace functions can now be specified using the...
- NumPy 2.0.0 Release Notes
...y. Additionally, device keyword-only arguments were added to: asarray, arange, empty, empty_like, eye, full, full_like, linspace, ones, ones_like, zeros, and zeros_like. For all these new arguments, only device="cpu" is supported. (gh-25233...
- numpy.ma.polyfit
...# may vary >>> p30(4.5) -0.10547061179440398 # may vary Illustration: >>> import matplotlib.pyplot as plt >>> xp = np.linspace(-2, 6, 100) >>> _ = plt.plot(x, y, '.', xp, p(xp), '-', xp, p30(xp), '--') >>> plt.ylim(-2,2) (-2, 2) >>> plt.s...
- numpy.polyfit
...# may vary >>> p30(4.5) -0.10547061179440398 # may vary Illustration: >>> import matplotlib.pyplot as plt >>> xp = np.linspace(-2, 6, 100) >>> _ = plt.plot(x, y, '.', xp, p(xp), '-', xp, p30(xp), '--') >>> plt.ylim(-2,2) (-2, 2) >>> plt.s...
- numpy.polynomial.chebyshev.Chebyshev.linspace
....polynomial.chebyshev) numpy.polynomial.chebyshev.Chebyshev numpy.polynomial.chebyshev.Chebyshev.linspace...
- numpy.polynomial.hermite.hermfit
...ki/Curve_fitting Examples >>> import numpy as np >>> from numpy.polynomial.hermite import hermfit, hermval >>> x = np.linspace(-10, 10) >>> rng = np.random.default_rng() >>> err = rng.normal(scale=1./10, size=len(x)) >>> y = hermval(x, [1...
- numpy.polynomial.hermite.Hermite.linspace
...ts” (numpy.polynomial.hermite) numpy.polynomial.hermite.Hermite numpy.polynomial.hermite.Hermite.linspace...
- numpy.polynomial.hermite_e.hermefit
...urve_fitting Examples >>> import numpy as np >>> from numpy.polynomial.hermite_e import hermefit, hermeval >>> x = np.linspace(-10, 10) >>> rng = np.random.default_rng() >>> err = rng.normal(scale=1./10, size=len(x)) >>> y = hermeval(x, [...
- numpy.polynomial.hermite_e.HermiteE.linspace
- numpy.polynomial.laguerre.lagfit
- numpy.polynomial.laguerre.Laguerre.linspace
- numpy.polynomial.legendre.Legendre.linspace
- numpy.polynomial.polynomial.polyfit
- numpy.polynomial.polynomial.Polynomial.linspace
- numpy.polynomial.polyutils.mapdomain
- Using the convenience classes