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

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

Syntax

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

Value

The number of observations of the second sample.

Remarks

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

Exceptions

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