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

📄 dtn_cstr_1.cc

📁 这是处理语音信号的程序
💻 CC
字号:
// file: dtn_cstr_1.cc//// isip include files//#include "dt_node.h"#include "dt_node_constants.h"// method: constructor//// arguments: none//// return: none//// this is the default constructor//Dt_node::Dt_node() {  // set the parent and children informaiton  //  parent_d =  (Dt_node*)NULL;  l_child_d = (Dt_node*)NULL;  r_child_d = (Dt_node*)NULL;  // initialize the optimal question  //  opt_question_d = (Question*)NULL;    // initialize the state indices at this node  //  num_states_d = 0;  state_index_d = (int_4*)NULL;    // initialize the likelihood information  //  likelihood_d = (float_4)0;  split_lk_inc_d = (float_4)0;    // set the label value  //    label_d = (int_4)0;    // set the flag value  //  flag_leaf_d = ISIP_TRUE ;  flag_visit_d = ISIP_FALSE;    // exit gracefully  //}

⌨️ 快捷键说明

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