cdm_set_0.cc

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

CC
30
字号
// file: cdm_set_0.cc//// isip include files//#include "cd_model.h"#include "cd_model_constants.h"// method: set_num_states_cc//// arguments://       int_4 num_states: (input) number of states//// return : a logical value showing status//// this method set the index of the state at the given postion //logical_1 Cd_model::set_num_states_cc(int_4 num_states_a) {  num_states_d= num_states_a;  if(num_states_d>0) {    states_ind_d = new int_4[num_states_d];  }    // exist gracefully  //  return ISIP_TRUE;}

⌨️ 快捷键说明

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