annotate hmm/hmm.h @ 154:f47182362b51

Update non-qmake build system, remove qmake-based one
author Chris Cannam
date Mon, 21 Oct 2013 17:49:10 +0100
parents e5907ae6de17
children fdaa63607c15
rev   line source
cannam@16 1 #ifndef _HMM_H
cannam@16 2 #define _HMM_H
cannam@16 3
cannam@20 4 #ifdef __cplusplus
cannam@20 5 extern "C" {
cannam@20 6 #endif
cannam@20 7
cannam@16 8 /*
cannam@16 9 * hmm.h
cannam@16 10 *
cannam@16 11 * Created by Mark Levy on 12/02/2006.
Chris@84 12 * Copyright 2006 Centre for Digital Music, Queen Mary, University of London.
Chris@84 13
Chris@84 14 This program is free software; you can redistribute it and/or
Chris@84 15 modify it under the terms of the GNU General Public License as
Chris@84 16 published by the Free Software Foundation; either version 2 of the
Chris@84 17 License, or (at your option) any later version. See the file
Chris@84 18 COPYING included with this distribution for more information.
cannam@16 19 *
cannam@16 20 */
cannam@16 21
cannam@16 22 #ifndef PI
cannam@16 23 #define PI 3.14159265358979323846264338327950288
cannam@16 24 #endif
cannam@16 25
cannam@16 26 typedef struct _model_t {
cannam@16 27 int N; /* number of states */
cannam@16 28 double* p0; /* initial probs */
cannam@16 29 double** a; /* transition probs */
cannam@16 30 int L; /* dimensionality of data */
cannam@16 31 double** mu; /* state means */
cannam@16 32 double** cov; /* covariance, tied between all states */
cannam@16 33 } model_t;
cannam@16 34
cannam@16 35 void hmm_train(double** x, int T, model_t* model); /* with scaling */
cannam@16 36 void forward_backwards(double*** xi, double** gamma, double* loglik, double* loglik1, double* loglik2, int iter,
cannam@16 37 int N, int T, double* p0, double** a, double** b);
cannam@16 38 void baum_welch(double* p0, double** a, double** mu, double** cov, int N, int T, int L, double** x, double*** xi, double** gamma);
cannam@16 39 void viterbi_decode(double** x, int T, model_t* model, int* q); /* using logs */
cannam@16 40 model_t* hmm_init(double** x, int T, int L, int N);
cannam@16 41 void hmm_close(model_t* model);
cannam@16 42 void invert(double** cov, int L, double** icov, double* detcov); /* uses LAPACK (included with Mac OSX) */
cannam@16 43 double gauss(double* x, int L, double* mu, double** icov, double detcov, double* y, double* z);
cannam@16 44 double loggauss(double* x, int L, double* mu, double** icov, double detcov, double* y, double* z);
cannam@16 45 void hmm_print(model_t* model);
cannam@16 46
cannam@20 47 #ifdef __cplusplus
cannam@20 48 }
cannam@16 49 #endif
cannam@16 50
cannam@20 51 #endif
cannam@20 52