Constructor for ProportionalHazards.

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

Syntax

C#
public ProportionalHazards(
	double[,] x,
	int[] nVarEffects,
	int[] indEffects
)
Visual Basic (Declaration)
Public Sub New ( _
	x As Double(,), _
	nVarEffects As Integer(), _
	indEffects As Integer() _
)
Visual C++
public:
ProportionalHazards(
	array<double,2>^ x, 
	array<int>^ nVarEffects, 
	array<int>^ indEffects
)

Parameters

x
Type: array< System..::.Double ,2>[,](,)[,]
A double matrix containing the data, including optional data.
nVarEffects
Type: array< System..::.Int32 >[]()[]
An int array containing the number of variables associated with each effect in the model.
indEffects
Type: array< System..::.Int32 >[]()[]
An int array containing the column numbers of x associated with each effect. The first nVarEffects[0] elements of indEffects contain the column numbers of x for the variables in the first effect. The next nVarEffects[1] elements of indEffects contain the column numbers of x for the variables in the second effect, etc.

See Also