Bases: astropy.modeling.polynomial.PolynomialBase
This is a base class for the 2D Chebyshev and Legendre models.
The polynomials implemented here require a maximum degree in x and y.
| Parameters: | x_degree : int
y_degree : int
x_domain : list or None
x_window : list or None
y_domain : list or None
y_window : list or None
param_dim : int
**params : dict
|
|---|
Attributes Summary
| input_names | list() -> new empty list |
| n_inputs | int(x=0) -> int or long |
| n_outputs | int(x=0) -> int or long |
Methods Summary
| evaluate(x, y, *coeffs) | |
| get_num_coeff() | Determine how many coefficients are needed |
| imhorner(x, y, coeff) | |
| invlex_coeff() | |
| prepare_inputs(x, y, **kwargs) |
Attributes Documentation
Methods Documentation
Determine how many coefficients are needed
| Returns: | numc : int
|
|---|