Markov IEdge chain generator with the propability vector distributed over the out-edges weights.

Namespace:  QuickGraph.Algorithms.RandomWalks
Assembly:  QuickGraph.Algorithms (in QuickGraph.Algorithms.dll) Version: 2.4.2.1514 (2.4.2.1514)

Syntax

C#
public class WeightedMarkovEdgeChain : IMarkovEdgeChain
Visual Basic (Declaration)
Public Class WeightedMarkovEdgeChain _
	Implements IMarkovEdgeChain

Remarks

Field Value

This class can be used to generate a Markov Chain of IEdge instance. The probability vector is computed such that each out-edge weight sum is 1 (to have a stochastic vector):
CopyC#
outWeight = \sum weight[e_i]
Pr[e_i] = weight[e_i]/outWeight

Inheritance Hierarchy

System..::.Object
  QuickGraph.Algorithms.RandomWalks..::.WeightedMarkovEdgeChain
    QuickGraph.Algorithms.RandomWalks..::.VanishingWeightedMarkovEdgeChain

See Also