convolve_models#
- astropy.convolution.convolve_models(model, kernel, mode='convolve_fft', **kwargs)[source]#
 Convolve two models using
convolve_fft.- Parameters:
 - model
Model Functional model
- kernel
Model Convolution kernel
- mode
python:str - Keyword representing which function to use for convolution.
 ‘convolve_fft’ : use
convolve_fftfunction.‘convolve’ : use
convolve.
- **kwargs
python:dict Keyword arguments to me passed either to
convolveorconvolve_fftdepending onmode.
- model
 - Returns:
 - default
CompoundModel Convolved model
- default