⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sfoba.h

📁 一个通用的隐性马尔可夫C代码库 开发环境:C语言 简要说明:这是一个通用的隐性马尔可夫C代码库
💻 H
字号:
/*------------------------------------------------------------------------------  author       : Bernhard Knab  filename     : ghmm/ghmm/sfoba.h  created      : TIME: 16:47:16     DATE: Mon 15. November 1999  $Id: sfoba.h,v 1.7 2003/12/19 15:06:17 cic99 Exp $Copyright (C) 1998-2001, ZAIK/ZPR, Universit鋞 zu K鰈nThis program is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 2 of the License, or(at your option) any later version.This program is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See theGNU General Public License for more details.You should have received a copy of the GNU General Public Licensealong with this program; if not, write to the Free SoftwareFoundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA------------------------------------------------------------------------------*/#ifndef SFOBA_H#define SFOBA_H#include <ghmm/smodel.h>#ifdef __cplusplusextern "C" {#endif/**@name SHMM Forward-Backward-Algorithm *//*@{ (Doc++-Group: sfoba) *//** Forward-Backward-Algorithm for multiple double    sequences with scaling.    For reference see:      Rabiner, L.R.: "`A Tutorial on Hidden {Markov} Models and Selected                Applications in Speech Recognition"', Proceedings of the IEEE,	77, no 2, 1989, pp 257--285*/	/** Forward-Algorithm.  Calculates alpha[t][i], scaling factors scale[t] and log( P(O|lambda) ) for  a given double sequence and a given model.  @param smo      model  @param O        sequence  @param T        length of sequence  @param alpha    alpha[t][i]  @param scale    scale factors  @param log_p    log likelihood log( P(O|lambda) )  @return 0 for success, -1 for error  */int sfoba_forward(smodel *smo, const double *O, int T, double ***b, 		  double **alpha, double *scale, double *log_p);/**   Backward-Algorithm.   Calculates beta[t][i] given a double sequence and a model. Scale factors   given as parameter (come from sfoba\_forward).  @param smo      model  @param O          sequence  @param T        length of sequence  @param b        matrix with precalculated output probabilities. May be NULL  @param beta     beta[t][i]  @param scale    scale factors  @return 0 for success, -1 for error  */int sfoba_backward(smodel *smo, const double *O, int T, double ***b,		   double **beta, const double *scale);/**  Calculation of  log( P(O|lambda) ).   Done by calling sfoba\_forward. Use this function if only the  log likelihood and not alpha[t][i] is needed, alpha matrix is allocated with  stat_matrix_d_alloc  @param smo      model  @param O        sequence  @param T         length of sequence  @param log_p    log likelihood log( P(O|lambda) )  @return 0 for success, -1 for error  */int sfoba_logp(smodel *smo, const double *O, int T, double *log_p);#ifdef __cplusplus}#endif/*@} (Doc++-Group: sfoba) */#endif

⌨️ 快捷键说明

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