初中生
最后登录1970-1-1
在线时间 小时
注册时间2014-3-27
|
楼主 |
发表于 2014-3-31 16:10:33
|
显示全部楼层
山外メ雲ジ 发表于 2014-3-31 11:40
有示范例程的吧,研究一下例程。我们也没研究过dsp
#define N 64 /*Number of points*/
uint32_t x[N],y[N]; /* input and output arrays */
uint16_t real[N], imag[N]; /* real and imaginary arrays */
/* Fill the input array */
for(i=0; i<N; i++)
x = (((uint16_t)(real)) | ((uint32_t)(imag<<16)));
cr4_fft_64_stm32(y, x, N); /*computes the FFT of the x[N] samples*/ 按照这个官方例程 我虚拟了一个信号,然后计算FFT 得出的Y值不正确。。。。
还有他的输入输出都是uint型 |
|