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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? kernel.h

?? 這是一個(gè)從音頻信號(hào)里提取特征參量的程序
?? H
字號(hào):
// file: $isip/class/algo/Kernel/Kernel.h// version: $Id: Kernel.h,v 1.5 2002/11/14 21:28:50 jelinek Exp $//// make sure definitions are only made once//#ifndef ISIP_KERNEL#define ISIP_KERNEL// isip include files//#include <NameMap.h>#include <VectorFloat.h>#include <VectorDouble.h>// Kernel: a class for computing various kernel functions such as:// RBF, polynomial, sigmoid and linear kernels. The kernels// implemented here represent the most common kernels found in the// kernel machine literature.// class Kernel {  //---------------------------------------------------------------------------  //  // public constants  //  //---------------------------------------------------------------------------public:    // define the class name  //  static const String CLASS_NAME;  //----------------------------------------  //  // other important constants  //  //----------------------------------------    // define kernel choices:  //  a linear kernel is the default choice  //  enum ALGORITHM { LINEAR = 0,  POLYNOMIAL, RBF, SIGMOID,		   DEF_ALGORITHM = LINEAR };  // define static NameMap objects for the enumerated values  //  static const NameMap ALGO_MAP;  //----------------------------------------  //  // i/o related constants  //  //----------------------------------------      static const String DEF_PARAM;  static const String PARAM_ALGORITHM;  static const String PARAM_CONSTANTS;  //----------------------------------------  //  // default values and arguments  //  //----------------------------------------    // default constants for each Kernel algorithm  //  static const VectorFloat DEF_LIN_CONSTANTS;  static const VectorFloat DEF_POLY_CONSTANTS;  static const VectorFloat DEF_RBF_CONSTANTS;  static const VectorFloat DEF_SIGM_CONSTANTS;  //----------------------------------------  //  // error codes  //  //----------------------------------------      static const long ERR = 35700;  static const long ERR_PRM = 35701;  static const long ERR_UNKALG = 35702;  //---------------------------------------------------------------------------  //  // protected data  //  //---------------------------------------------------------------------------protected:    // algorithm name  //  ALGORITHM algorithm_d;  // parameters of the Kernel function:  //  since different kernels require different numbers of parameters,  //  by making this a vector we are able to collapse all algorithms into  //  one set of function calls.  //  VectorFloat constants_d;  // initialization flag  //  boolean is_valid_d;    // static memory manager  //  static MemoryManager mgr_d;  // static debug level  //  static Integral::DEBUG debug_level_d;    //---------------------------------------------------------------------------  //  // required public methods  //  //---------------------------------------------------------------------------public:      // method: name  //  static const String& name() {    return CLASS_NAME;  }    // other static methods  //  static boolean diagnose(Integral::DEBUG debug_level);    // method: setDebug  //  boolean setDebug(Integral::DEBUG debug_level) {    debug_level_d = debug_level;    return true;  }  // other debug methods  //  boolean debug(const unichar* msg) const;  // method: destructor  //  ~Kernel() {}  // method: default constructor  //  Kernel(ALGORITHM algorithm = DEF_ALGORITHM) {    algorithm_d = algorithm;    is_valid_d = false;  }      // method: copy constructor  //  Kernel(const Kernel& arg) {    assign(arg);  }  // assign methods  //  boolean assign(const Kernel& arg);    // method: operator=  //  Kernel& operator= (const Kernel& arg) {    assign(arg);    return *this;  }  // i/o methods  //  long sofSize() const;    boolean read(Sof& sof, long tag, const String& name = CLASS_NAME);  boolean write(Sof& sof, long tag, const String& name = CLASS_NAME) const;  boolean readData(Sof& sof, const String& pname = DEF_PARAM,		   long size = SofParser::FULL_OBJECT,		   boolean param = true,                   boolean nested = false);  boolean writeData(Sof& sof, const String& pname = DEF_PARAM) const;    // equality methods  //  boolean eq(const Kernel& arg) const;    // method: new  //  static void* operator new(size_t size) {    return mgr_d.get();  }  // method: new[]  //  static void* operator new[](size_t size) {    return mgr_d.getBlock(size);  }  // method: delete  //  static void operator delete(void* ptr) {    mgr_d.release(ptr);  }  // method: delete[]  //  static void operator delete[](void* ptr) {    mgr_d.releaseBlock(ptr);  }    // method: setGrowSize  //  static boolean setGrowSize(long grow_size) {    return mgr_d.setGrow(grow_size);  }    // other memory management methods  //  boolean clear(Integral::CMODE ctype = Integral::DEF_CMODE);    //---------------------------------------------------------------------------  //  // class-specific public methods  //  set methods  //  //---------------------------------------------------------------------------  // method: setAlgorithm  //  boolean setAlgorithm(ALGORITHM algorithm) {    algorithm_d = algorithm;    constants_d.clear(Integral::RESET);    is_valid_d = false;    return true;    }    // other set methods  //  boolean setConstants(const VectorFloat& constants);    //---------------------------------------------------------------------------  //  // class-specific public methods  //  get methods  //  //---------------------------------------------------------------------------  // method: getAlgorithm  //  ALGORITHM getAlgorithm() const {    return algorithm_d;  }  // method: getConstants  //  const VectorFloat& getConstants() const {    return constants_d;  }  //---------------------------------------------------------------------------  //  // class-specific public methods:  //  computational methods  //  //---------------------------------------------------------------------------  // computes the kernel function K(x,y)  //  boolean compute(float& value, const VectorFloat& x, const VectorFloat& y);  boolean compute(double& value, const VectorDouble& x, const VectorDouble& y);  //---------------------------------------------------------------------------  //  // class-specific public methods:  //  public methods required by the AlgorithmBase interface contract  //  //---------------------------------------------------------------------------  // initialization method  //  boolean init();  //---------------------------------------------------------------------------  //  // private methods  //  //---------------------------------------------------------------------------private:  // these methods compute particular kernels  //  boolean computeLinear(float& value, const VectorFloat& x,			const VectorFloat& y);  boolean computeLinear(double& value, const VectorDouble& x,			const VectorDouble& y);  boolean computePolynomial(float& value, const VectorFloat& x,			    const VectorFloat& y);  boolean computePolynomial(double& value, const VectorDouble& x,			    const VectorDouble& y);  boolean computeRBF(float& value, const VectorFloat& x,		     const VectorFloat& y);  boolean computeRBF(double& value, const VectorDouble& x,		     const VectorDouble& y);  boolean computeSigmoid(float& value, const VectorFloat& x,			 const VectorFloat& y);  boolean computeSigmoid(double& value, const VectorDouble& x,			 const VectorDouble& y);};// end of include file// #endif

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
看电视剧不卡顿的网站| 亚洲欧美激情视频在线观看一区二区三区| 亚洲美女在线一区| 国产乱国产乱300精品| 欧美精品三级在线观看| 亚洲欧美日韩系列| 成人精品一区二区三区四区| 欧美成人伊人久久综合网| 一区二区三区不卡视频在线观看 | 亚洲制服丝袜在线| 99久久综合狠狠综合久久| wwwwxxxxx欧美| 免费在线观看视频一区| 欧美在线观看视频在线| 日韩美女精品在线| 欧美一级二级在线观看| 亚洲一区二区三区四区在线观看| 成人av在线网| 国产日韩欧美精品在线| 久久99蜜桃精品| 777亚洲妇女| 午夜精品一区二区三区电影天堂| 一本色道亚洲精品aⅴ| 自拍偷拍亚洲欧美日韩| 波多野结衣在线aⅴ中文字幕不卡| 精品1区2区在线观看| 免费高清在线视频一区·| 欧美另类久久久品| 亚洲成国产人片在线观看| 色哟哟欧美精品| 亚洲另类春色校园小说| 99r国产精品| 亚洲另类春色校园小说| 日本高清免费不卡视频| 一区二区在线观看视频| 色欧美乱欧美15图片| 一区二区三区电影在线播| 色8久久人人97超碰香蕉987| 怡红院av一区二区三区| 91久久一区二区| 亚洲午夜羞羞片| 69堂成人精品免费视频| 日韩黄色免费电影| 欧美大片在线观看一区| 精品在线观看免费| 国产婷婷一区二区| 成人手机在线视频| 亚洲男人的天堂一区二区| 欧美吞精做爰啪啪高潮| 亚洲大片免费看| 欧美一级艳片视频免费观看| 美腿丝袜在线亚洲一区| 欧美精品一区视频| 成人美女在线观看| 一区二区三区 在线观看视频| 欧美日韩久久不卡| 精品一区二区三区不卡| 久久久国产综合精品女国产盗摄| 成人在线综合网| 亚洲人吸女人奶水| 欧美日韩高清在线播放| 精品一区二区久久久| 国产精品全国免费观看高清| 91网址在线看| 五月激情六月综合| 亚洲精品一区二区三区在线观看| 国产宾馆实践打屁股91| 久久99国产精品免费| 中文字幕av不卡| 欧美在线观看你懂的| 美女在线一区二区| 国产精品久久午夜| 欧美日韩国产精选| 国产精品一区专区| 亚洲精品一卡二卡| 欧美一级免费观看| 成人亚洲一区二区一| 亚洲一区二区五区| 精品日韩欧美一区二区| 97精品国产露脸对白| 五月婷婷色综合| 久久精品人人做人人综合| 欧洲视频一区二区| 国产一区二区精品久久99| 亚洲欧美激情在线| 欧美电影免费提供在线观看| av亚洲精华国产精华精| 日本vs亚洲vs韩国一区三区| 国产精品视频一二| 678五月天丁香亚洲综合网| 国产成人av一区二区三区在线 | 亚洲国产日韩精品| 久久综合色播五月| 欧美日韩专区在线| 国产麻豆91精品| 亚洲一区二区成人在线观看| 久久先锋影音av鲁色资源网| 欧美熟乱第一页| 国产不卡在线视频| 奇米亚洲午夜久久精品| 中文字幕一区二区三区在线观看| 7777精品伊人久久久大香线蕉完整版 | 制服丝袜av成人在线看| www.亚洲在线| 九九精品视频在线看| 亚洲一区二区黄色| 国产精品区一区二区三| 日韩一区二区电影在线| 色哟哟亚洲精品| 国产激情一区二区三区四区| 日韩电影网1区2区| 一区二区三区在线免费视频| 国产欧美日韩不卡免费| 欧美一区二区三区性视频| 91亚洲国产成人精品一区二三 | 亚洲一区二区精品视频| 国产精品美女久久久久高潮 | av一本久道久久综合久久鬼色| 精品一区二区三区免费毛片爱| 亚洲一区二区三区视频在线播放 | 亚洲午夜久久久久久久久电影网 | 亚洲国产精品传媒在线观看| 日韩女优毛片在线| 欧美日韩日日夜夜| 色综合久久九月婷婷色综合| 成熟亚洲日本毛茸茸凸凹| 九九热在线视频观看这里只有精品| 亚洲h动漫在线| 夜夜嗨av一区二区三区中文字幕 | 日韩免费观看2025年上映的电影| 色哟哟精品一区| av色综合久久天堂av综合| 国产一区二区三区视频在线播放 | 中文字幕色av一区二区三区| 久久夜色精品一区| 精品噜噜噜噜久久久久久久久试看| 欧美高清视频在线高清观看mv色露露十八 | 国产精品国产三级国产aⅴ入口| 久久综合中文字幕| 精品免费一区二区三区| 日韩午夜精品视频| 日韩一卡二卡三卡四卡| 欧美一级艳片视频免费观看| 5858s免费视频成人| 欧美日韩精品久久久| 欧美色图激情小说| 欧美系列一区二区| 欧美系列在线观看| 欧美猛男超大videosgay| 欧美中文字幕一二三区视频| 欧美综合色免费| 欧美三级蜜桃2在线观看| 欧美日韩一区二区三区视频| 欧美影视一区二区三区| 欧美日韩视频一区二区| 欧美精品vⅰdeose4hd| 欧美精品丝袜中出| 日韩天堂在线观看| 日韩精品一区在线观看| 精品国产成人在线影院| 精品对白一区国产伦| 久久日一线二线三线suv| 久久久久久久久99精品| 国产欧美一区二区精品婷婷 | 欧美日韩一区二区欧美激情| 这里只有精品免费| 日韩一卡二卡三卡国产欧美| 日韩精品专区在线影院重磅| 久久综合视频网| 欧美国产精品一区二区| 亚洲欧洲国产专区| 一区二区三区产品免费精品久久75| 亚洲国产精品影院| 日本美女一区二区| 国产麻豆日韩欧美久久| 成人午夜电影久久影院| 色婷婷激情久久| 91麻豆精品国产91久久久使用方法| 日韩亚洲欧美在线| 国产亚洲欧美日韩俺去了| 亚洲欧美在线另类| 五月激情综合婷婷| 狠狠色2019综合网| 99久久精品费精品国产一区二区| 欧美性极品少妇| 欧美mv和日韩mv的网站| 中文字幕免费不卡在线| 一区二区三区色| 免费在线观看不卡| 国产成人在线网站| 色久综合一二码| 日韩欧美国产wwwww| 国产精品美女www爽爽爽| 亚洲成人免费视| 国产毛片精品视频| 在线一区二区三区四区| 精品久久久久久久久久久院品网| 国产精品成人一区二区艾草| 香蕉久久一区二区不卡无毒影院| 国产一区二区在线视频|