1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- //
- // File: fun8_FFTImplementationCallback.h
- //
- // MATLAB Coder version : 5.2
- // C/C++ source code generated on : 09-Mar-2023 16:57:20
- //
- #ifndef FFTIMPLEMENTATIONCALLBACK_H
- #define FFTIMPLEMENTATIONCALLBACK_H
- // Include Files
- #include "rtwtypes.h"
- #include "coder_array.h"
- #include <cstddef>
- #include <cstdlib>
- // Type Definitions
- namespace coder {
- namespace internal {
- namespace fft {
- class fun8_FFTImplementationCallback {
- public:
- static void r2br_r2dit_trig_impl(const ::coder::array<creal_T, 1U> &x,
- int unsigned_nRows,
- const ::coder::array<double, 2U> &costab,
- const ::coder::array<double, 2U> &sintab,
- ::coder::array<creal_T, 1U> &y);
- static void dobluesteinfft(const ::coder::array<creal_T, 1U> &x, int n2blue,
- int nfft, const ::coder::array<double, 2U> &costab,
- const ::coder::array<double, 2U> &sintab,
- const ::coder::array<double, 2U> &sintabinv,
- ::coder::array<creal_T, 1U> &y);
- };
- } // namespace fft
- } // namespace internal
- } // namespace coder
- #endif
- //
- // File trailer for fun8_FFTImplementationCallback.h
- //
- // [EOF]
- //
|