Delta2D¶
-
class
gammapy.image.models.Delta2D(amplitude, x_0, y_0, **constraints)[source]¶ Bases:
astropy.modeling.Fittable2DModelTwo dimensional delta function .
This model can be used for a point source morphology.
Parameters: amplitude : float
Peak value of the point source
x_0 : float
x position center of the point source
y_0 : float
y position center of the point source
Notes
Model formula:
\[\begin{split}f(x, y) = \cdot \left \{ \begin{array}{ll} A & : x = x_0 \ \mathrm{and} \ y = y_0 \\ 0 & : else \end{array} \right.\end{split}\]The pixel positions
x_0andy_0are rounded to integers. Sub-pixel information is lost.Attributes Summary
amplitudeparam_namesx_0y_0Methods Summary
evaluate(x, y, amplitude, x_0, y_0)Two dimensional delta model function Attributes Documentation
-
amplitude¶
-
param_names= ('amplitude', 'x_0', 'y_0')¶
-
x_0¶
-
y_0¶
Methods Documentation
-