Gets the collection of samples for the test.

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

Syntax

Visual Basic (Declaration)
Public ReadOnly Property Samples As VariableCollection
C#
public VariableCollection Samples { get; }
C++
public:
VariableCollection^ Samples {
	VariableCollection^ get ();
}

Value

A VariableCollection containing the samples.

Remarks

Use this property to access the collection of samples the test will be applied to. This property is of type VariableCollection. You can use the methods of this class to retrieve, add and remove samples. All samples must be of type NumericalVariable.

See Also