Kernel1D¶
- class astropy.convolution.Kernel1D(model=None, x_size=None, array=None, **kwargs)[source]¶
Bases:
KernelBase class for 1D filter kernels.
- Parameters:
- model
FittableModel Model to be evaluated.
- x_size
intorNone, optional Size of the kernel array. Default = ⌊8*width+1⌋. Only used if
arrayis None.- array
ndarrayorNone, optional Kernel array.
- widthnumber
Width of the filter kernel.
- mode
str, optional - One of the following discretization modes:
- ‘center’ (default)
Discretize model by taking the value at the center of the bin.
- ‘linear_interp’
Discretize model by linearly interpolating between the values at the corners of the bin.
- ‘oversample’
Discretize model by taking the average on an oversampled grid.
- ‘integrate’
Discretize model by integrating the model over the bin.
- factornumber, optional
Factor of oversampling. Default factor = 10.
- model