亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專(zhuān)輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? calc_00.cc

?? 這是一個(gè)從音頻信號(hào)里提取特征參量的程序
?? CC
字號(hào):
// file: $isip/class/algo/Calculus/calc_00.cc// version: $Id: calc_00.cc,v 1.11 2002/05/31 21:57:22 picone Exp $//// isip include files//#include "Calculus.h"//------------------------------------------------------------------------//// required public methods////-----------------------------------------------------------------------// method: assign//// arguments://  const Calculus& arg: (input) object to be assigned//// return: a boolean value indicating status//// this method assigns the input object to the current object//boolean Calculus::assign(const Calculus& arg_a) {  // assign common data  //  algorithm_d = arg_a.algorithm_d;  implementation_d = arg_a.implementation_d;  order_d = arg_a.order_d;  // check common algorithms: differentiation  //  if (arg_a.algorithm_d == DIFFERENTIATION) {    // check implementation: regression, central_difference,    //  backward_difference    //    if ((arg_a.implementation_d == REGRESSION) ||	(arg_a.implementation_d == CENTRAL_DIFFERENCE) ||	(arg_a.implementation_d == BACKWARD_DIFFERENCE)) {      // assign all protected data      //      delta_win_d = arg_a.delta_win_d;    }    // check implementation: unknown    //    else {      return Error::handle(name(), L"assign",			   ERR_UNKIMP, __FILE__, __LINE__);    }    // copy the base class    //    return AlgorithmBase::assign(arg_a);  }  // check common algorithms: integration  //  else if (arg_a.algorithm_d == INTEGRATION) {    return Error::handle(name(), L"assign",			 ERR_UNSUPA, __FILE__, __LINE__);  }    // check common algorithms: unknown  //  else {    return Error::handle(name(), L"assign",			 ERR_UNKALG, __FILE__, __LINE__);  }  }// method: eq//// arguments://  const Calculus& arg: (input) object to be compared//// return: a boolean value indicating status//// this method checks whether the current object is identical to the// input object//boolean Calculus::eq(const Calculus& arg_a) const {  // check the algorithm  //  if (algorithm_d != arg_a.algorithm_d) {    return false;  }  // check parameters common to all algorithms  //  else if (implementation_d != arg_a.implementation_d) {    return false;  }  else if (order_d != arg_a.order_d) {    return false;  }  // check specific algorithms: differentiation  //  else if (algorithm_d == DIFFERENTIATION) {    // check specific implementations    //    if ((implementation_d == REGRESSION) ||	(implementation_d == CENTRAL_DIFFERENCE) ||	(implementation_d == BACKWARD_DIFFERENCE)) {      if (delta_win_d != arg_a.delta_win_d) {	return false;      }    }    else {      return Error::handle(name(), L"eq",			 ERR_UNKIMP, __FILE__, __LINE__);    }  }  // check specific algorithms: integration  //  else if (algorithm_d == INTEGRATION) {    return Error::handle(name(), L"eq",			 ERR_UNSUPA, __FILE__, __LINE__);  }  // check specific algorithms: unknown  //  else {    return Error::handle(name(), L"eq",			 ERR_UNKALG, __FILE__, __LINE__);  }  // exit gracefully by checking the base class  //  return AlgorithmBase::eq(arg_a);}// method: clear//// arguments://  Integral::CMODE ctype: (input) clear mode//// return: a boolean value indicating status//// this method resets the data members to the default values//boolean Calculus::clear(Integral::CMODE ctype_a) {  // reset all protected data  //  if (ctype_a != Integral::RETAIN) {    algorithm_d = DEF_ALGORITHM;    implementation_d = DEF_IMPLEMENTATION;    order_d = DEF_ORDER;    delta_win_d = DEF_DELTAWIN;  }    // make the status invalid  //  is_valid_d = false;  // call the base clear method  //  return AlgorithmBase::clear(ctype_a);}//---------------------------------------------------------------------------//// class-specific public methods://  public methods required by the AlgorithmBase interface contract////---------------------------------------------------------------------------// method: assign//// arguments://  const AlgorithmBase& arg: (input) object to be assigned//// return: a boolean value indicating status//// this method assigns the input algorithm object to the current// Calculus object, if the input algorithm object is not a Calculus// object, it returns an error//boolean Calculus::assign(const AlgorithmBase& arg_a) {  // case: input is a Calculus object  //  if (typeid(arg_a) == typeid(Calculus)) {    return assign((Calculus&)arg_a);  }  // case: other  //  if the input algorithm object is not a Calculus object, error  //  else {    return Error::handle(name(), L"assign", Error::ARG, __FILE__, __LINE__);  }}// method: eq//// arguments://  const AlgorithmBase& arg: (input) object to be compared//// return: a boolean value indicating status//// this method checks whether the current Calculus object is identical// to the input algorithm object, if the input algorithm object is not// a Calculus object, it returns an error//boolean Calculus::eq(const AlgorithmBase& arg_a) const {  // case: input is a Calculus object  //  if (typeid(arg_a) == typeid(Calculus)) {    return eq((Calculus&)arg_a);  }  // case: other  //  if the input algorithm object is not a Calculus object, error  //  else {    return Error::handle(name(), L"eq", Error::ARG, __FILE__, __LINE__);  }}// method: init//// arguments: none//// return: a boolean value indicating status//// this method precomputes various constants used in this class// boolean Calculus::init() {  // check algorithm: differentiation  //  if (algorithm_d == DIFFERENTIATION) {    // check implementation: regression    //    if (implementation_d == REGRESSION) {      // check the order: we currently only support a first-order regression      //      if (order_d != (long)1) {	return Error::handle(name(), L"init", ERR_ORDER,			     __FILE__, __LINE__);      }        // compute the number of elements used in the calculation      //      num_elements_d = 2 * delta_win_d + 1;      offset_d = -num_elements_d / 2;      // compute the denominator of the regression formula      //      denom_d = 0.0;      long N = (long)delta_win_d;      for (long i = 1; i <= N; i++) {	denom_d += i*i;      }      denom_d *= 2.0;      // invert the value      //      if (denom_d != (double)0.0) {	denom_d = 1.0 / denom_d;      }      else {	return Error::handle(name(), L"init", ERR, __FILE__, __LINE__,			     Error::WARNING);      }    }          // check implementation: central difference    //    else if (implementation_d == CENTRAL_DIFFERENCE) {      // check the order: we currently only support a first-order difference      //      if (order_d != (long)1) {	return Error::handle(name(), L"init", ERR_ORDER,			     __FILE__, __LINE__);      }        // compute the number of elements used in the calculation      //      num_elements_d = 2 * delta_win_d + 1;      offset_d = -num_elements_d / 2;      // compute the denominator of the difference      //      denom_d = 1.0 / (2.0 * (double)delta_win_d);    }    // check implementation: backward difference    //    else if (implementation_d == BACKWARD_DIFFERENCE) {      // check the order: we currently only support a first-order difference      //      if (order_d != (long)1) {	return Error::handle(name(), L"init", ERR_ORDER,			     __FILE__, __LINE__);      }        // compute the number of elements used in the calculation      //      num_elements_d = delta_win_d + (long)1;      offset_d = -delta_win_d;      // compute the denominator of the difference      //      denom_d = 1.0 / (double)delta_win_d;    }    // check implementation: unknown    //    else {      return Error::handle(name(), L"init",			   ERR_UNKIMP, __FILE__, __LINE__);    }  }  // check algorithm: integration  //  else if (algorithm_d == INTEGRATION) {    return Error::handle(name(), L"init",			 ERR_UNSUPA, __FILE__, __LINE__);  }    // check algorithm: unknown  //  else {    return Error::handle(name(), L"init",			 ERR_UNKALG, __FILE__, __LINE__);  }      // make the status valid  //  is_valid_d = true;  // exit gracefully  //  return true;}//-----------------------------------------------------------------------------//// we define non-integral constants in the default constructor//      //-----------------------------------------------------------------------------// constants: class name//const String Calculus::CLASS_NAME(L"Calculus");// constants: i/o related constants//const String Calculus::DEF_PARAM(L"");const String Calculus::PARAM_ALGORITHM(L"algorithm");const String Calculus::PARAM_IMPLEMENTATION(L"implementation");const String Calculus::PARAM_CMODE(L"compute_mode");const String Calculus::PARAM_ORDER(L"order");const String Calculus::PARAM_DELTAWIN(L"delta_win");// constants: NameMap(s) for the enumerated values//const NameMap Calculus::ALGO_MAP(L"DIFFERENTIATION, INTEGRATION");const NameMap Calculus::IMPL_MAP(L"REGRESSION, CENTRAL_DIFFERENCE, BACKWARD_DIFFERENCE");// static instantiations: memory manager//MemoryManager Calculus::mgr_d(sizeof(Calculus), Calculus::name());

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美夫妻性生活| 精品一二三四在线| 视频一区二区中文字幕| 日韩二区三区四区| 国产精品一区二区无线| jvid福利写真一区二区三区| 欧美视频一区二区三区在线观看| 欧美一区二区三区四区久久| 久久久久久久久伊人| 亚洲人午夜精品天堂一二香蕉| 爽爽淫人综合网网站| 国产精品中文字幕一区二区三区| 91丨九色porny丨蝌蚪| 欧美一区二区播放| 中文字幕免费观看一区| 亚洲成人你懂的| 国产精品一区二区免费不卡| 色婷婷av一区| 久久一夜天堂av一区二区三区| 亚洲少妇最新在线视频| 麻豆成人久久精品二区三区红| 99久久精品一区二区| 日韩女优电影在线观看| 国产精品福利av| 久久精品噜噜噜成人88aⅴ| 成人av小说网| 日韩欧美黄色影院| 夜夜嗨av一区二区三区四季av| 九九**精品视频免费播放| 91美女片黄在线观看| 久久综合精品国产一区二区三区| 亚洲综合丝袜美腿| 国产91在线观看| 88在线观看91蜜桃国自产| 国产精品女主播av| 久久精品国产亚洲一区二区三区 | 色婷婷亚洲综合| 日韩精品一区二区三区swag| 亚洲码国产岛国毛片在线| 九色|91porny| 欧美日韩国产系列| 亚洲色大成网站www久久九九| 国产综合色视频| 亚洲影院免费观看| 国产白丝精品91爽爽久久| 777亚洲妇女| 亚洲一区日韩精品中文字幕| 成人久久久精品乱码一区二区三区| 日韩一级片在线观看| 亚洲精品高清在线观看| 大白屁股一区二区视频| 精品国产麻豆免费人成网站| 首页亚洲欧美制服丝腿| 欧美在线不卡一区| 最新不卡av在线| 成人三级在线视频| 久久精品视频一区二区三区| 久久精品国产亚洲一区二区三区| 在线成人av网站| 亚洲一区影音先锋| 色综合久久久网| 亚洲欧洲www| 不卡区在线中文字幕| 久久久噜噜噜久噜久久综合| 日本亚洲电影天堂| 91精品国产手机| 图片区小说区区亚洲影院| 欧美午夜不卡视频| 一区二区三区精品久久久| 色8久久精品久久久久久蜜| 综合中文字幕亚洲| 色综合久久久网| 亚洲另类春色国产| 色欧美日韩亚洲| 一区二区三区中文字幕电影| 色一区在线观看| 亚洲精品精品亚洲| 在线视频国内自拍亚洲视频| 亚洲一二三区视频在线观看| 欧美性生活影院| 无吗不卡中文字幕| 在线不卡一区二区| 日本麻豆一区二区三区视频| 欧美一级片免费看| 精品在线你懂的| 久久久777精品电影网影网 | 久久久久9999亚洲精品| 国产成人av在线影院| 中文无字幕一区二区三区| 成人网在线播放| 亚洲三级在线播放| 欧美亚洲综合久久| 日韩在线a电影| 精品av久久707| 成人午夜免费视频| 一区二区在线观看视频| 欧美日韩一区中文字幕| 免费高清在线视频一区·| 精品国产凹凸成av人网站| 岛国一区二区三区| 亚洲精品五月天| 91精品国产乱码久久蜜臀| 激情综合色综合久久综合| 国产日韩高清在线| 色94色欧美sute亚洲线路二| 偷拍一区二区三区四区| 精品免费99久久| av一区二区三区| 性久久久久久久| 欧美不卡在线视频| www.日本不卡| 性做久久久久久| 久久亚洲综合av| 91麻豆福利精品推荐| 国产成人99久久亚洲综合精品| 日韩精品一区二区三区三区免费| 国产一区二区三区精品欧美日韩一区二区三区 | 色国产综合视频| 日韩成人一级大片| 国产日韩欧美高清| 欧美三区免费完整视频在线观看| 久久99精品国产麻豆婷婷洗澡| 国产精品三级视频| 欧美久久久一区| 成人免费视频caoporn| 亚洲成人一区二区| 国产清纯在线一区二区www| 欧美色图12p| 成人午夜视频在线| 人人狠狠综合久久亚洲| 国产精品国产三级国产有无不卡| 在线电影欧美成精品| www.欧美日韩| 精品无码三级在线观看视频| 亚洲卡通欧美制服中文| 26uuu色噜噜精品一区| 欧美亚洲免费在线一区| 国产精品综合网| 日日夜夜精品视频天天综合网| 国产精品美女久久久久久久| 91精品国模一区二区三区| 91一区二区三区在线播放| 免费成人美女在线观看| 亚洲欧美色图小说| 久久久影视传媒| 在线综合视频播放| 一本久道中文字幕精品亚洲嫩 | 久久久91精品国产一区二区精品 | 同产精品九九九| 亚洲欧美综合在线精品| 久久久久久免费网| 51久久夜色精品国产麻豆| 91在线国内视频| 国产ts人妖一区二区| 麻豆高清免费国产一区| 亚洲成a人在线观看| 亚洲乱码国产乱码精品精可以看 | 成人av在线影院| 狠狠久久亚洲欧美| 麻豆精品在线视频| 亚洲国产一区二区在线播放| 国产精品欧美极品| 久久精品人人做人人爽人人| 日韩免费观看高清完整版| 欧美日本乱大交xxxxx| 色视频欧美一区二区三区| 成人高清视频免费观看| 国产一区二区三区免费播放| 日韩av电影免费观看高清完整版 | 国产精品资源在线看| 麻豆成人91精品二区三区| 日韩影院在线观看| 亚洲午夜电影在线| 亚洲国产人成综合网站| 亚洲激情欧美激情| 亚洲激情成人在线| 最新国产の精品合集bt伙计| 国产精品不卡在线| 一区二区中文视频| 国产精品福利在线播放| 中文字幕一区二区在线观看| 中文字幕不卡一区| 国产精品久久久久久久午夜片| 国产日韩亚洲欧美综合| 久久精品视频免费观看| 欧美韩日一区二区三区| 欧美国产乱子伦| 国产精品视频免费| 大白屁股一区二区视频| 国产不卡视频在线播放| 福利电影一区二区| 福利电影一区二区三区| 北岛玲一区二区三区四区| caoporn国产一区二区| 99久久久国产精品免费蜜臀| 91蜜桃网址入口| 欧美色电影在线| 欧美一区二区三区的| 欧美变态口味重另类| 久久婷婷国产综合国色天香|