Bases: astropy.modeling.polynomial.PolynomialModel
1D Polynomial model.
Parameters: | degree : int
domain : list or None window : list or None
param_dim : int
**params : dict
fixed: a dict :
tied: dict :
bounds: dict : eqcons: list :
ineqcons : list
|
---|
Methods Summary
deriv(x, *params) | Computes the Vandermonde matrix. |
horner(x, coef) |
Methods Documentation
Computes the Vandermonde matrix.
Parameters: | x : ndarray
params : throw away parameter
|
---|---|
Returns: | result : ndarray
|