The indices of the rows.
Namespace:
Imsl.Stat
Assembly:
ImslCS (in ImslCS.dll) Version: 6.5.0.0
Syntax
C# |
---|
public virtual int[] Index { get; set; } |
Visual Basic (Declaration) |
---|
Public Overridable Property Index As Integer() |
Visual C++ |
---|
public: virtual property array<int>^ Index { array<int>^ get (); void set (array<int>^ value); } |
Field Value
An int array containing the indices of the columns (rows if Row = false) to use in computing the distance measure.
Remarks
By default, if Row = true, Index =
0, 1, ..., x.GetLength(1)-1. if Row = false,
Index = 0, 1, ..., x.GetLength(0)-1, see Row.