Complex to Real Fast Fourier Transform. More...
Functions | |
| template<int rank> | |
| array | fftC2R (const array &in, bool is_odd=false, const double norm_factor=1.0) |
| C++ Interface for complex to real fast fourier transform. | |
| AFAPI af_err | af_fft_c2r (af_array *out, const af_array in, const double norm_factor, const bool is_odd) |
| C Interface for complex to real fast fourier transform for one dimensional signals. | |
| AFAPI af_err | af_fft2_c2r (af_array *out, const af_array in, const double norm_factor, const bool is_odd) |
| C Interface for complex to real fast fourier transform for two dimensional signals. | |
| AFAPI af_err | af_fft3_c2r (af_array *out, const af_array in, const double norm_factor, const bool is_odd) |
| C Interface for complex to real fast fourier transform for three dimensional signals. | |
Complex to Real Fast Fourier Transform.
| AFAPI af_err af_fft2_c2r | ( | af_array * | out, |
| const af_array | in, | ||
| const double | norm_factor, | ||
| const bool | is_odd ) |
C Interface for complex to real fast fourier transform for two dimensional signals.
| [out] | out | is a real array containing the output of the transform. |
| [in] | in | is a complex array containing only the non redundant parts of the signals. |
| [in] | norm_factor | is the normalization factor with which the input is scaled after the transformation is applied |
| [in] | is_odd | is a flag signifying if the output should be even or odd size |
| AFAPI af_err af_fft3_c2r | ( | af_array * | out, |
| const af_array | in, | ||
| const double | norm_factor, | ||
| const bool | is_odd ) |
C Interface for complex to real fast fourier transform for three dimensional signals.
| [out] | out | is a real array containing the output of the transform. |
| [in] | in | is a complex array containing only the non redundant parts of the signals. |
| [in] | norm_factor | is the normalization factor with which the input is scaled after the transformation is applied |
| [in] | is_odd | is a flag signifying if the output should be even or odd size |
| AFAPI af_err af_fft_c2r | ( | af_array * | out, |
| const af_array | in, | ||
| const double | norm_factor, | ||
| const bool | is_odd ) |
C Interface for complex to real fast fourier transform for one dimensional signals.
| [out] | out | is a real array containing the output of the transform. |
| [in] | in | is a complex array containing only the non redundant parts of the signals. |
| [in] | norm_factor | is the normalization factor with which the input is scaled after the transformation is applied |
| [in] | is_odd | is a flag signifying if the output should be even or odd size |
| array fftC2R | ( | const array & | in, |
| bool | is_odd = false, | ||
| const double | norm_factor = 1.0 ) |
C++ Interface for complex to real fast fourier transform.
| [in] | in | is a complex array containing only the non redundant parts of the signals |
| [in] | is_odd | is a flag signifying if the output should be even or odd size |
| [in] | norm_factor | is the normalization factor with which the input is scaled after the transformation is applied |
| rank | signifies the dimensionality of the transform |