IGLib
1.7.2
The IGLib base library EXTENDED - with other lilbraries and applications.
|
Generic Matrix interface. More...
Public Member Functions | |
T[,] | CopyToArray () |
Copy all elements of this matrix to a rectangular 2D array. More... | |
T[][] | CopyToJaggedArray () |
Copy all elements of this matrix to a jagged array. More... | |
Properties | |
int | RowCount [get] |
Gets the number of rows. More... | |
int | ColumnCount [get] |
Gets the number of columns. More... | |
T | this[int i, int j] [get, set] |
Gets or set the element indexed by (i, j) in the Matrix . More... | |
Generic Matrix interface.
T [,] IG.Old.IMatrix_OldNumerics< T >.CopyToArray | ( | ) |
Copy all elements of this matrix to a rectangular 2D array.
T [][] IG.Old.IMatrix_OldNumerics< T >.CopyToJaggedArray | ( | ) |
Copy all elements of this matrix to a jagged array.
|
get |
Gets the number of rows.
|
get |
Gets the number of columns.
|
getset |
Gets or set the element indexed by (i, j)
in the Matrix
.
i | Row index. |
j | Column index. |