Gets or sets the number of observations of the first sample.

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

Syntax

Visual Basic (Declaration)
Public Property Count1 As Integer
C#
public int Count1 { get; set; }
C++
public:
int Count1 {
	int get ();
	void set (int value);
}

Value

The number of observations of the first sample.

Remarks

This property can only be set if Sample1 is nullNothingnullptr. The count must be greater than one.

Exceptions

ExceptionCondition
InvalidOperationExceptionSample1 is not nullNothingnullptr.
ArgumentOutOfRangeExceptionThe new count is less than or equal to one.