TI中文支持网
TI专业的中文技术问题搜集分享网站

C6657 FFT参数问题

我在fftlib中找到了 fft_sp_cmplx_notwid_br函数,

void fft_sp_cmplx_notwid_br(double *inp,unsigned int n, double *outp, double *coeff) {
unsigned int interrupt_context;

我存放复数用的方法是定义了结构体

#ifdef _LITTLE_ENDIAN
typedef struct _CPLXF
{
float imag;
float real;
} cplxf_t;

#endif

请问各位TI工程师们,如何使用参数为double *的函数,同样请问如何使用参数为const float *的函数,如dsplib的DSPF_sp_vecmul函数

Shine:

参数的数据类型要一致。

赞(0)
未经允许不得转载:TI中文支持网 » C6657 FFT参数问题
分享到: 更多 (0)