23 lines
494 B
C
23 lines
494 B
C
/*
|
|
* This file is part of the micropython-ulab project,
|
|
*
|
|
* https://github.com/v923z/micropython-ulab
|
|
*
|
|
* The MIT License (MIT)
|
|
*
|
|
* Copyright (c) 2019 Zoltán Vörös
|
|
*/
|
|
|
|
#ifndef _FFT_
|
|
#define _FFT_
|
|
|
|
#ifndef MP_PI
|
|
#define MP_PI MICROPY_FLOAT_CONST(3.14159265358979323846)
|
|
#endif
|
|
|
|
#define SWAP(t, a, b) { t tmp = a; a = b; b = tmp; }
|
|
|
|
mp_obj_t fft_fft(size_t , const mp_obj_t *);
|
|
mp_obj_t fft_ifft(size_t , const mp_obj_t *);
|
|
mp_obj_t fft_spectrum(size_t , const mp_obj_t *);
|
|
#endif
|