hist_05.cc

来自「这是一个从音频信号里提取特征参量的程序」· CC 代码 · 共 31 行

CC
31
字号
// file: $isip/class/stat/Histogram/hist_05.cc// version: $Id: hist_05.cc,v 1.1 2001/02/01 16:47:50 hamaker Exp $//// isip include files//#include "Histogram.h"// method: clear//// arguments://  Integral::CMODE cmode: (input) clear mode//// return: a boolean value indicating status//// clear the internal data//boolean Histogram::clear(Integral::CMODE cmode_a) {  // reset the mode if necessary  //  if (cmode_a != Integral::RETAIN) {    mode_d = DEF_MODE;  }  // clear the bins and counts  //  return (bins_d.clear(cmode_a) &&	  counts_d.clear(cmode_a));}

⌨️ 快捷键说明

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