Bases: astropy.modeling.Fittable2DModel
Two dimensional Box model.
| Parameters: | amplitude : float
x_0 : float
x_width : float
y_0 : float
y_width : float
|
|---|---|
| Other Parameters: | |
fixed : a dict
tied : dict
bounds : dict eqcons : list
ineqcons : list
|
|
See also
Notes
Model formula:
f(x, y) = \left \{ \begin{array}{ll} A & : x_0 - w_x/2 \geq x \geq x_0 + w_x/2 \\ A & : y_0 - w_y/2 \geq y \geq y_0 + w_y/2 \\ 0 & : \textnormal{else} \end{array} \right.
Attributes Summary
| amplitude | |
| param_names | |
| x_0 | |
| x_width | |
| y_0 | |
| y_width |
Methods Summary
| evaluate(x, y, amplitude, x_0, y_0, x_width, ...) | Two dimensional Box model function |
Attributes Documentation
Methods Documentation
Two dimensional Box model function