Gets the collection of variables in the distribution, sorted by time (which may be null) and their index.

Namespace:  BayesServer
Assembly:  BayesServer (in BayesServer.dll)
Version: 2.2.0.0 (2.2.0.0)

Syntax

C#
public VariableContextCollection SortedVariables { get; }
Visual Basic (Declaration)
Public ReadOnly Property SortedVariables As VariableContextCollection
Visual C++
public:
virtual property VariableContextCollection^ SortedVariables {
	VariableContextCollection^ get () sealed;
}

Field Value

Variables sorted by time and their index.

Implements

IDistribution..::.SortedVariables

Remarks

All variables in each distribution are sorted by their respective index. This is for comuptational reasons. If you want to access the values with respect to a different variable ordering, see the TableIterator and TableAccessor classes.

See Also