Bases: astropy.modeling.polynomial.OrthoPolynomialBase
Legendre 2D polynomial.
Defined as:

| Parameters: | x_degree : int 
 y_degree : int 
 x_domain : list or None 
 y_domain : list or None 
 x_window : list or None 
 y_window : list or None 
 param_dim : int 
 **params : dict 
 | 
|---|---|
| Other Parameters: | |
| fixed : a dict 
 tied : dict 
 bounds : dict eqcons : list 
 ineqcons : list 
 | |
Attributes Summary
| input_names | list() -> new empty list | 
Methods Summary
| fit_deriv(x, y, *params) | Derivatives with repect to the coefficients. | 
Attributes Documentation
Methods Documentation
Derivatives with repect to the coefficients. This is an array with Legendre polynomials:
Lx0Ly0 Lx1Ly0...LxnLy0...LxnLym
| Parameters: | x : ndarray 
 y : ndarray 
 params : throw away parameter 
 | 
|---|---|
| Returns: | result : ndarray 
 |