void DSP_fft16x16r ( int n, short * restrict ptr_x, const short * restrict ptr_w, short * restrict ptr_y, int radix, int offset, int n_max );c代码实现
时间: 2024-04-10 12:34:58 浏览: 75
DSP的fft设计的代码
下面是一个示例的C代码实现,用于执行16点FFT(快速傅里叶变换):
```c
#include <math.h>
void DSP_fft16x16r(int n, short *restrict ptr_x, const short *restrict ptr_w, short *restrict ptr_y, int radix, int offset, int n_max) {
***
阅读全文