TwoSampleTTest.Variance1 Property

Gets or sets the variance of the first sample.

Definition

Namespace: Numerics.NET.Statistics.Tests
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public double Variance1 { get; set; }

Property Value

Double
The variance of the first sample.

Remarks

This property can only be set if Sample1 is null. The variance must be greater than or equal to zero.

Exceptions

InvalidOperationException

Sample1 is not null.

ArgumentOutOfRangeException

The new variance is less than zero.

See Also