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

📄 ht_phone_6.cc

📁 这是处理语音信号的程序
💻 CC
字号:
// file: ht_phone_6.cc// // isip include files//#include "hmm_train.h"#include "hmm_train_constants.h"// method: check_sph_cc//// arguments://  int_4 curr_phn: (input) current phone index//  int_4 num_sph : (input) number of monophones//  int_4* sph_index : (input) list of user specified phone//// return: a logical_1 true or flase//// this method compare the input//logical_1 check_sph_cc(int_4 curr_phn_a, int_4 num_sph_a, int_4* sph_index_a) {  // declare local variables  //  int i;  logical_1 tag = ISIP_FALSE;  if(num_sph_a>0) {        for(i=0;i<num_sph_a;i++) {      if(sph_index_a[i]==curr_phn_a) {      	tag=ISIP_TRUE;		             }    }  }  // exit gracefully  //  return tag;  }

⌨️ 快捷键说明

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