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

📄 window.h

📁 这是处理语音信号的程序
💻 H
字号:
// file: window/window.h//	// make sure definitions are made only once//#ifndef __ISIP_WINDOW#define __ISIP_WINDOW// isip include files//#ifndef __ISIP_INTEGRAL#include <integral.h>#endif#ifndef __ISIP_FILTER#include <filter.h>#endif// Window : a class meant to apply a window function to signal data//class Window : public Filter {  //---------------------------------------------------------------------------  //  // protected members  //  //---------------------------------------------------------------------------protected:  // information about the window function  //  int_4 type_d;    //---------------------------------------------------------------------------  //  // public methods  //  //---------------------------------------------------------------------------public:  // required methods  //  char_1* name_cc();  volatile void error_handler_cc(char_1* method_name, char_1* message);  logical_1 debug_cc(FILE* fp, char_1* message);  // destructor/constructor  //  Window();  Window(int_4 type, int_4 width);  Window(char_1* type, int_4 width);  // change window properties  //  logical_1 set_cc(int_4 type, int_4 width);  logical_1 set_cc(char_1* type, int_4 width);    //---------------------------------------------------------------------------  //  // private methods  //  //---------------------------------------------------------------------------private:  logical_1 create_cc();  int_4 type_cc(char_1* type);};// end of file//#endif

⌨️ 快捷键说明

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