MATLAB Programs and Exercises
Computer Programs
- Recognition score for HMMs using the Baum-Welch method. Write a MAT-LAB function named Baum_Welch_Do_HMM that takes as input: (a) a column vector of initial state probabilities pi_init, (b) the transition matrix A, whose (i, j) element is the probability of transition from state i to state j, (c) the matrix of the emission probabilities B, whose (i, j) element is the probability to emit the ith alphabet symbol from state j, and (d) a row vector O, which contains a sequence of the code numbers of discrete symbols. It returns the score produced when the HMM, defined by pi_init, A, B, is applied to the sequence of symbols contained in O. Assume that if the alphabet symbols are, say, S1, S2, …, ...
Get Pattern Recognition, 4th Edition now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.