Constructor to compute statistics for mean and variance inferences using samples from two normal populations.

Namespace: Imsl.Stat
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public NormTwoSample(
	double[] x,
	double[] y
)
Visual Basic (Declaration)
Public Sub New ( _
	x As Double(), _
	y As Double() _
)
Visual C++
public:
NormTwoSample(
	array<double>^ x, 
	array<double>^ y
)

Parameters

x
Type: array< System..::.Double >[]()[]
A double array containing the first sample.
y
Type: array< System..::.Double >[]()[]
A double array containing the second sample.

See Also