I\'m very new to machine learning, I\'v read about Matlab\'s Statistics toolbox for hidden Markov model, I want to classify a given sequence of signals using it. I\'v 3D co-
Here is a general outline of the approach to classifying d-dimensional sequences using hidden Markov models:
For each class k:
Next to classify a new sequence X:
log P(X|model_k)As I mentioned in the comments, the Statistics Toolbox only implement discrete observation HMM models, so you will have to find another libraries or implement the code yourself. Kevin Murphy's toolboxes (HMM toolbox, BNT, PMTK3) are popular choices in this domain.
Here are some answers I posted in the past using Kevin Murphy's toolboxes:
The above answers are somewhat different from what you are trying to do here, but it's a good place to start.