Table of Contents

Method MarkovRandomIntStartsWith

Namespace
Gamelogic.Extensions.Algorithms
Assembly
Gamelogic.Extensions.dll

MarkovRandomIntStartsWith(float[,], int)

Makes a Markov generator that starts with the given value.

public static IGenerator<int> MarkovRandomIntStartsWith(float[,] transitionTable, int initialValue)

Parameters

transitionTable float[,]
initialValue int

Returns

IGenerator<int>

MarkovRandomIntStartsWith(float[,], int, int)

Makes a Markov generator that starts with the given value.

public static IGenerator<int> MarkovRandomIntStartsWith(float[,] transitionTable, int initialValue, int seed)

Parameters

transitionTable float[,]
initialValue int
seed int

Returns

IGenerator<int>