Matrix Constructor |
Name | Description | |
---|---|---|
Matrix |
Creates a Matrix with 0 columns and 0 rows.
| |
Matrix(Double) |
Creates a matrix from multidimensional array.
| |
Matrix(Int32) |
Creates a zero matrix of the given order.
| |
Matrix(Matrix) |
Creates a copy of the given matrix.
| |
Matrix(Int32, Double) |
Creates a matrix of the given order and sets all its elements
to the given value.
| |
Matrix(Int32, Int32) |
Creates a zero matrix of the given size.
| |
Matrix(Int32, Int32, Double) |
Creates a matrix of the given size and sets all its elements
to the given value.
| |
Matrix(Int32, Int32, Double) |
Creates a matrix from one dimensional array.
|