Click or drag to resize
Accord.NET (logo)

IHybridMarkovModelEvaluate Method

Calculates the probability that this model has generated the given sequence.

Namespace:  Accord.Statistics.Models.Markov.Hybrid
Assembly:  Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax
double Evaluate(
	double[][] observations
)
Request Example View Source

Parameters

observations
Type: SystemDouble
A sequence of observations.

Return Value

Type: Double
The probability that the given sequence has been generated by this model.
Remarks
Evaluation problem. Given the HMM M = (A, B, pi) and the observation sequence O = {o1, o2, ..., oK}, calculate the probability that model M has generated sequence O. This can be computed efficiently using the Forward algorithm.
See Also