Constructs a new CellArray object using the specified variables.

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

Syntax

Visual Basic (Declaration)
Public Sub New ( _
	dependentVariable As NumericalVariable, _
	independentVariables As Variable() _
)
C#
public CellArray (
	NumericalVariable dependentVariable,
	Variable[] independentVariables
)
C++
public:
CellArray (
	NumericalVariable^ dependentVariable, 
	array<Variable^>^ independentVariables
)

Parameters

dependentVariable (Extreme.Statistics.NumericalVariable)
A NumericalVariable that specifies the dependent variable.
independentVariables ()
An array of Variable objects that specify the independent variables.

Exceptions

ExceptionCondition
ArgumentNullException

dependentVariable is nullNothingnullptr.

-or-

independentVariables is nullNothingnullptr.