This is documentation for an old release of NumPy (version 1.7.0). Read this page in the documentation of the latest stable release (version > 1.17).
Least squares fit to data.
Return a Hermite instance that is the least squares fit to the data y sampled at x. Unlike hermfit, the domain of the returned instance can be specified and this will often result in a superior fit with less chance of ill conditioning. Support for NA was added in version 1.7.0. See hermfit for full documentation of the implementation.
Parameters : | x : array_like, shape (M,)
y : array_like, shape (M,) or (M, K)
deg : int
domain : {None, [beg, end], []}, optional
rcond : float, optional
full : bool, optional
w : array_like, shape (M,), optional
window : {[beg, end]}, optional
|
---|---|
Returns : | least_squares_fit : instance of Hermite
[residuals, rank, singular_values, rcond] : only if full = True
|
See also