fft_size.inc

来自「TI公司5000系列DSP(TMS320C5416)原装DSK板的全部试验程序」· INC 代码 · 共 25 行

INC
25
字号
*********************************************************************************
*       (C) COPYRIGHT TEXAS INSTRUMENTS, INC. 1996                              *
*********************************************************************************
*********************************************************************************
*                                                                               *
* MODULE NAME:  fft_size.inc                                                    *
*                                                                               *
* AUTHORS:      Simon Lau and Nathan Baltz                                      *
*                                                                               *
* DESCRIPTION:  This include file sets the FFT size for the 'C54x Real FFT code *
*               Note that the Real FFT size (i.e. the number of points in the   *
*               original real input sequence) is 2N; whereas the FFT size is    *
*               the number of complex points formed by packing the real inputs, *
*               which is N.  For example, for a 256-pt Real FFT, K_FFT_SIZE     *
*               should be set to 128 and K_LOGN should be set to 7.             *
*                                                                               *
* DATE:         7-16-1996                                                       *
*                                                                               *
*********************************************************************************

K_FFT_SIZE  .set    512                   ; # of complex points (=N)
K_LOGN      .set    9                   ; # of stages (=logN/log2)


⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?