|
HiddenMarkovModelTDistribution, TObservationEvaluate Method (TObservation, Int32)
|
Note: This API is now obsolete.
Calculates the log-likelihood that this model has generated the
given observation sequence along the given state path.
Namespace:
Accord.Statistics.Models.Markov
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax [ObsoleteAttribute("Please use LogLikelihood(observations, path) instead.")]
public double Evaluate(
TObservation[] observations,
int[] path
)
<ObsoleteAttribute("Please use LogLikelihood(observations, path) instead.")>
Public Function Evaluate (
observations As TObservation(),
path As Integer()
) As Double
Request Example
View SourceParameters
- observations
- Type: TObservation
A sequence of observations. - path
- Type: SystemInt32
A sequence of states.
Return Value
Type:
Double
The log-likelihood that the given sequence of observations has
been generated by this model along the given sequence of states.
See Also