📄 options.h
字号:
/******************************************************************************//* options.h *//* options for the direct and fast computation of the NDFT *//* *//* authors: D. Potts *//* S. Kunis 2002 *//******************************************************************************//** window */ #define KAISER_BESSEL /* one of KAISER_BESSEL,SINC_POWER */ /* B_SPLINE,GAUSSIAN, *//** fftw */#include "fftw3.h"/** timing *//*#define MEASURE_TIME*/ /* measure time for each step *//** timing */#ifdef MEASURE_TIMEdouble elapsed_time;#define T1 {elapsed_time=second();}#define T2(a) { \ elapsed_time=second()-elapsed_time; \ printf("Step %d. elapsed time: %f secs.\n",(a),elapsed_time); \ /*printf("%f\t",elapsed_time);*/ \ fflush(stdout); \}#else#define T1#define T2(a)#endif/* options.h */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -