Search
Search Results
Search finished, found 19 page(s) matching the search query.
- numpy.polynomial.hermite.Hermite.window
...numpy.polynomial.hermite.Hermite.window...
- numpy.polynomial.hermite.Hermite.window (Python attribute, in numpy.polynomial.hermite.Hermite.window)
- numpy.polynomial.hermite_e.HermiteE.window (Python attribute, in numpy.polynomial.hermite_e.HermiteE.window)
numpy.polynomial
...) while the lowercase p represents an instance of a polynomial class. Constants Poly.domain – Default domain Poly.window – Default window Poly.basis_name – String used to represent the basis Poly.maxpower – Maximum value n such...
- NumPy 1.6.0 Release Notes
...olynomials in numpy.polynomial Extend the number of polynomials available in the polynomial package. In addition, a new window attribute has been added to the classes in order to specify the range the domain maps to. This is mostly useful f...
- numpy.polynomial.hermite.Hermite
...numpy.polynomial.hermite.Hermite class numpy.polynomial.hermite.Hermite(coef, domain=None, window=None, symbol='x')[source] An Hermite series class. The Hermite class provides the standard Python numerical metho...
- numpy.polynomial.hermite.Hermite.basis
...numpy.polynomial.hermite.Hermite.basis method classmethod polynomial.hermite.Hermite.basis(deg, domain=None, window=None, symbol='x')[source] Series basis polynomial of degree deg. Returns the series representing the basis polyno...
- numpy.polynomial.hermite.Hermite.cast
...numpy.polynomial.hermite.Hermite.cast method classmethod polynomial.hermite.Hermite.cast(series, domain=None, window=None)[source] Convert series to series of this class. The series is expected to be an instance of some polynomial...
- numpy.polynomial.hermite.Hermite.convert
...numpy.polynomial.hermite.Hermite.convert method polynomial.hermite.Hermite.convert(domain=None, kind=None, window=None)[source] Convert series to a different kind and/or domain and/or window. Parameters: domainarray_like, opt...
- numpy.polynomial.hermite.Hermite.fit
...Hermite.fit method classmethod polynomial.hermite.Hermite.fit(x, y, deg, domain=None, rcond=None, full=False, w=None, window=None, symbol='x')[source] Least squares fit to data. Return a series instance that is the least squares fit to th...
- numpy.polynomial.hermite.Hermite.fromroots
...numpy.polynomial.hermite.Hermite.fromroots method classmethod polynomial.hermite.Hermite.fromroots(roots, domain=[], window=None, symbol='x')[source] Return series instance that has the specified roots. Returns a series representing the...
- numpy.polynomial.hermite.Hermite.has_samewindow
...py.polynomial.hermite) numpy.polynomial.hermite.Hermite numpy.polynomial.hermite.Hermite.has_samewindow...
- numpy.polynomial.hermite.Hermite.identity
...numpy.polynomial.hermite.Hermite.identity method classmethod polynomial.hermite.Hermite.identity(domain=None, window=None, symbol='x')[source] Identity function. If p is the returned series, then p(x) == x for all values of x. Pa...
- numpy.polynomial.hermite.Hermite.mapparms
- numpy.polynomial.hermite.Hermite.window
...numpy.polynomial.hermite.Hermite.window...
- Polynomials
...omial(p1d.coef[::-1]) In addition to the coef attribute, polynomials from the polynomial package also have domain and window attributes. These attributes are most relevant when fitting polynomials to data, though it should be noted that p...
- Using the convenience classes
...: >>> from numpy.polynomial import Polynomial as P >>> p = P([1,2,3]) >>> p Polynomial([1., 2., 3.], domain=[-1., 1.], window=[-1., 1.], symbol='x') Note that there are three parts to the long version of the printout. The first is the c...
- numpy.polynomial.hermite.Hermite.has_samewindow (Python method, in numpy.polynomial.hermite.Hermite.has_samewindow)
- numpy.polynomial.hermite_e.HermiteE.has_samewindow (Python method, in numpy.polynomial.hermite_e.HermiteE.has_samewindow)