ghmm_gmlcontinuousmodel.cpp
来自「General Hidden Markov Model Library 一个通用」· C++ 代码 · 共 39 行
CPP
39 行
/* * * created: 26 Feb 2002 by Wasinee Rungsarityotin * authors: Wasinee Rungsarityotin (rungsari@molgen.mpg.de) * file : $Source$ * $Id: GHMM_GMLContinuousModel.cpp 256 2003-02-28 15:09:37Z wasinee $ * revision date : $Date: 2003-02-28 16:09:37 +0100 (Fri, 28 Feb 2003) $ ___copyright__ */#include "ghmm++/GHMM_GMLContinuousModel.h"#ifdef HAVE_NAMESPACESusing namespace std;#endifGHMM_GMLContinuousModel::GHMM_GMLContinuousModel() : GHMM_ContinuousModel() { setNodeTag("node"); setTransitionTag("edge"); /* Do not initialize anything. It will be read from xml file. */}GHMM_GMLContinuousModel::GHMM_GMLContinuousModel(int N, int M, int cos, density_t density, double prior) : GHMM_ContinuousModel(N, M, cos, density, prior) { /* Set keywords for XML-element tags */ setNodeTag("node"); setTransitionTag("edge");}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?