C# Класс Accord.Statistics.Models.Markov.Topology.Ergodic

Наследование: ITopology
Показать файл Открыть проект

Открытые методы

Метод Описание
Create ( bool logarithm, double &transitionMatrix, double &initialState ) : int

Creates the state transitions matrix and the initial state probabilities for this topology.

Ergodic ( int states ) : System

Creates a new Ergodic topology for a given number of states.

Ergodic ( int states, bool random ) : System

Creates a new Ergodic topology for a given number of states.

Описание методов

Create() публичный Метод

Creates the state transitions matrix and the initial state probabilities for this topology.
public Create ( bool logarithm, double &transitionMatrix, double &initialState ) : int
logarithm bool
transitionMatrix double
initialState double
Результат int

Ergodic() публичный Метод

Creates a new Ergodic topology for a given number of states.
public Ergodic ( int states ) : System
states int The number of states to be used in the model.
Результат System

Ergodic() публичный Метод

Creates a new Ergodic topology for a given number of states.
public Ergodic ( int states, bool random ) : System
states int The number of states to be used in the model.
random bool Whether to initialize the model with random probabilities /// or uniformly with 1 / number of states. Default is false (default is /// to use 1/states).
Результат System