wav_gen.h
来自「matlab 例程」· C头文件 代码 · 共 23 行
H
23 行
#if !defined(_WAV_GEN_)
#define _WAV_GEN_
#define LL_ONLY_AFTER_LEV 6
#define MAX_LEV 6
#define MAX_LEV_POW 64
#define MAX_ARR_SIZE (MAX_LEV_POW)
#ifndef max
#define max(a,b) \
((a)>(b)?(a):(b))
#endif
#ifndef min
#define min(a,b) \
((a)<(b)?(a):(b))
#endif
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?