win_set_0.cc

来自「这是处理语音信号的程序」· CC 代码 · 共 39 行

CC
39
字号
// file: window/win_set_0.cc//// isip include files//#include "window.h"#include "window_constants.h"// method: set_cc//// arguments://  int_4 type_d: (input) type of window to create//  int_4 width_d: (input) length of window to create//// return: a logical_1 indicating status//logical_1 Window::set_cc(int_4 type_a, int_4 width_a) {  // set the window type * width  //  type_d = type_a;  // allocate space for the window  //  allocate_cc(width_a);  // create the window  //  if (create_cc() != ISIP_TRUE) {    error_handler_cc((char_1*)"set_cc",		     (char_1*)"could not create window");    return ISIP_FALSE;  }    // exit gracefully  //  return ISIP_TRUE;}

⌨️ 快捷键说明

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