ghmm_gmlcontinuousmodel.h
来自「General Hidden Markov Model Library 一个通用」· C头文件 代码 · 共 57 行
H
57 行
/* * * created: 26 Feb 2002 by Wasinee Rungsarityotin * authors: Wasinee Rungsarityotin (rungsari@molgen.mpg.de) * file : $Source$ * $Id: GHMM_GMLContinuousModel.h 256 2003-02-28 15:09:37Z wasinee $ * revision date : $Date: 2003-02-28 16:09:37 +0100 (Fri, 28 Feb 2003) $ ___copyright__ */#ifndef _GHMM_GMLCONTINUOUSMODEL_H#define _GHMM_GMLCONTINUOUSMODEL_H 1#include "ghmm++/GHMM_ContinuousModel.h"#include <ghmm++/begin_code.h>#ifdef HAVE_NAMESPACESnamespace std {#endifclass GHMM_GMLContinuousModel;class GHMM_GMLContinuousModel : public GHMM_ContinuousModel { public: /** Just for reading from xml file. c_data is left uninitialized. */ GHMM_GMLContinuousModel(); /** Constructor. @param N Number of states @param M Number of output densities per state @param cos smodel includes continuous model with one transition matrix (cos is set to 1) and an extension for models with several matrices (cos is set to a positive integer value > 1). @param density Flag for density function. 0: normal density, 1: truncated normal density, 2: approximated normal density. @param prior prior for a priori probability of the model. -1 means no prior specified (all models have equal probability a priori. */ GHMM_GMLContinuousModel(int N, int M, int cos, density_t density, double prior=-1);};#ifdef HAVE_NAMESPACES}#endif#include <ghmm++/close_code.h>#endif /* */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?