type
Matrix
src
mixin Matrix
Interface for matrix implementations. A matrix is a rectangular array of numbers.
methods
cofactor |
Compute the cofactor of the matrix. |
---|---|
determinant |
Compute the determinant of the matrix. |
fill |
Set every element in the matrix to the given val. |
get |
Get the element at |
inverse |
Compute the inverse of the matrix. |
isSquare |
Return true if the matrix is square. |
minus |
Computes |
mult |
Computes |
multScalar |
Computes |
numCols |
The number of columns in the matrix. |
numRows |
The number of rows in the matrix. |
plus |
Computes |
set |
Set the element at |
transpose |
Get the transpose of the matrix. |