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

📄 mod_cstr_3.cc

📁 这是处理语音信号的程序
💻 CC
字号:
// file: mod_cstr_3.cc//// isip include files//#include "model.h"#include "model_constants.h"// method: constructor//// arguments://  Model& model : (input) model to copy from//// return: none//// this is a copy constructor//Model::Model(Model& model_a) {    // set the number of states  //  num_states_d = model_a.num_states_d;    // set the transition probabilities  //  trans_prob_d = model_a.trans_prob_d;  // set the states  //  states_d = new State*[num_states_d];  for (int_4 i = 0; i < num_states_d; i++) {    states_d[i] = model_a.states_d[i];  }  // exit gracefully  //}

⌨️ 快捷键说明

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