@mainpage @tableofcontents
Overview: HMM - Hidden Markov Models
hmm is a simple set of hidden Markov model (HMM) code intended to support control of switching linear dynamical systems.
It contains methods for generating and decoding systems with discrete latent states and discrete observed signals.

see also: rtxi-hmmDecoder and rtxi-hmmGenerator for application of this library in modules intended for the RTXI platform
srcsource files (*.cpp)includeheader files (*.h)examplesdemonstrating functionality, includes tutorialmatlabfor comparing matlab and C++ implementationsscriptsutilities for setting uphmmlibrarydocsfiles for creating Doxygen documentationlegacyold implementations (could likely be safely deleted)
- none
For basic project build & install
cd /path/to/repository
mkdir build && cd build
cmake .. #configure build
cmake --build . #build the project
cmake --install . #[optional] installs to default location (OS-specific),
#use `--prefix` to install to a different directorysee the build and test process in action:

For basic benchmarking and verification of a successful install
ctest -N #list tests to be performed
ctest -VV #execute tests- [see tutorial page here](@ref Tutorial)
sometimes, the first time I build after a clean install I get:
the C compiler "/opt/anaconda3/bin/x86_64-apple-darwin13.4.0-clang" is not able to compile a simple test program.
This happens when i'm in a conda environment with an older version of clang
conda deactive usually fixes the issue
