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

📄 dec_read_6.cc

📁 这是处理语音信号的程序
💻 CC
字号:
// file: dec_read_6.cc// // isip include files//#include "decoder.h"#include "decoder_constants.h" // method: read_ngram_cc//// arguments://  FILE* fp: (input) file pointer//  // return: a logical_1 indicating status//// this method reads in the ngram lm data from file into an ngram// object//logical_1 Decoder::read_ngram_cc(FILE* fp_a) {  // check file  //  if (fp_a == (FILE*)NULL) {    error_handler_cc((char_1*)"read_ngram_cc",		     (char_1*)"NULL input file pointer");  }    // initialize ngram if not done so  //  if (ngram_d == (Ngram*)NULL) {    ngram_d = new Ngram();  }  ngram_d->set_order_cc(ngram_order_d);  // read the ngram from file  //  ngram_d->read_ngram_cc(fp_a, lexicon_d);    // exit gracefully  //  return ISIP_TRUE;}

⌨️ 快捷键说明

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