Example #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="iohmma.MarkovProcessBase"/> class with the given number of hidden states.
 /// </summary>
 /// <param name="nhidden">The number of hidden states for the initialized hidden Markov saw.</param>
 public MarkovProcessBase(int nhidden)
 {
     this.Pi = new DiscreteDistribution(nhidden);
 }