mod_set_2.cc

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

CC
30
字号
// file: mod_set_2.cc//// isip include files//#include "model.h"#include "model_constants.h"// method: set_states_cc//// arguments://  State** state : (input) array of states//// return: logical_1 indicating status//// this methods sets the states for the model//logical_1 Model::set_states_cc(State** state_a) {  // copy the new state array  //  for (int_4 i = 0; i < num_states_d; i++) {    states_d[i] = state_a[i];  }    // exit gracefully  //  return ISIP_TRUE;}

⌨️ 快捷键说明

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