Gets or sets the GeneralVector instance containing the coordinates of the current vector in the sequence.

Namespace: Extreme.Statistics.Random
Assembly: Extreme.Numerics (Extreme.Numerics)

Syntax

Visual Basic (Declaration)
Protected Property Sequence As GeneralVector
C#
protected GeneralVector Sequence { get; set; }
C++
protected:
GeneralVector^ Sequence {
	GeneralVector^ get ();
	void set (GeneralVector^ value);
}

Remarks

When ReturnNewInstance is true, this property is set to a new instance each time a new point is generated.

When ReturnNewInstance is false, the same GeneralVector instance is reused, and the coordinates of the new point are copied into this vector.

You can change this property at any time during an enumeration.

See Also