|
mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
|
Wrappers for executing with fftw plans. More...
Wrappers for executing with fftw plans.
Functions | |
| template<typename inputDataT, typename outputDataT> | |
| void | mx::math::ft::fftw_execute_dft (typename fftwTypeSpec< inputDataT, outputDataT >::planT plan, inputDataT *in, outputDataT *out) |
| Execute the given plan on the given arrays. | |
| template<typename realT> | |
| void | mx::math::ft::fftw_destroy_plan (typename fftwPlanSpec< realT >::planT plan) |
| Destroy the given plan. | |
| void mx::math::ft::fftw_destroy_plan | ( | typename fftwPlanSpec< realT >::planT | plan | ) |
Destroy the given plan.
| plan | is the plan to destroy |
| realT | is the real floating point type of the plan |
References fftw_destroy_plan().
Referenced by fftw_destroy_plan().
| void mx::math::ft::fftw_execute_dft | ( | typename fftwTypeSpec< inputDataT, outputDataT >::planT | plan, |
| inputDataT * | in, | ||
| outputDataT * | out ) |
Execute the given plan on the given arrays.
| plan | the pre-planned plan |
| in | the input data array |
| out | the output data array |
| inputDataT | the data type of the input array |
| outputDataT | the data type of the output array |
References fftw_execute_dft().
Referenced by fftw_execute_dft().