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

📄 wav_gen.h

📁 matlab+dct+数字水印
💻 H
字号:
// Onur G. Guleryuz 1995, 1996, 1997,
// University of Illinois at Urbana-Champaign,
// Princeton University,
// Polytechnic University.

#if !defined(_WAV_GEN_)
#define _WAV_GEN_

// Grow only the LL band after this level 
// (relevant for packet decompositions).
#define LL_ONLY_AFTER_LEV 6

// Maximum level possible in all decompositions.
// Mainly because we are using static allocation in some
// places.
#define MAX_LEV 6
#define MAX_LEV_POW 64 /* 2^MAX_LEV */

#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -