⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 config

📁 用于FFT,来自MIT的源码
💻
字号:
# This file contains a description of the codelets that compose fftw.# NOTW is a list of the sizes that FFTW contains hard-coded transforms for# (the "base cases" of the FFT recursion):NOTW="1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 32 64"# TWIDDLE is a list of the sizes that FFTW can "recurse by" using# hard-coded codelets.  These are the "radices" that FFTW can handle# with optimal speed.  (e.g. Suppose you include a size r in TWIDDLE.# Then, for any N divisible by r, FFTW can break a transform of size# N into r transforms of size N/r using an optimized codelet.)TWIDDLE="2 3 4 5 6 7 8 9 10 16 32 64"# same as NOTW and TWIDDLE, but for real->complex transformsNOTW_REAL="1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 32 64 128"TWIDDLE_REAL="2 3 4 5 6 7 8 9 10 16 32"# FFTW & RFFTW source directoriesFFTW_SRCDIR=../fftwRFFTW_SRCDIR=../rfftw# Prefixes of file namesNOTW_PREFIX=fn_TWID_PREFIX=ftw_NOTWI_PREFIX=fni_TWIDI_PREFIX=ftwi_REAL2HC_PREFIX=frc_HC2REAL_PREFIX=fcr_HC2HC_FORWARD_PREFIX=fhf_HC2HC_BACKWARD_PREFIX=fhb_# To keep the lawyers happyCOPYRIGHT=../COPYRIGHTexport NOTW TWIDDLE FFTW_SRCDIR NOTW_PREFIX TWID_PREFIX export NOTWI_PREFIX TWIDI_PREFIX COPYRIGHT NOTW_REAL TWIDDLE_REALexport REAL2HC_PREFIX HC2REAL_PREFIX HC2HC_FORWARD_PREFIX export HC2HC_BACKWARD_PREFIX

⌨️ 快捷键说明

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