|
Custom Constructor (Double, Double)
|
Creates a new custom topology with user-defined
transition matrix and initial state probabilities.
Namespace:
Accord.Statistics.Models.Markov.Topology
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax public Custom(
double[,] transitions,
double[] initial
)
Public Sub New (
transitions As Double(,),
initial As Double()
)
Request Example
View SourceParameters
- transitions
- Type: SystemDouble
The transition probabilities for the model. - initial
- Type: SystemDouble
The initial probabilities for the model.
See Also