public class MCLMatrix
extends no.uib.cipr.matrix.DenseMatrix
| Constructor and Description |
|---|
MCLMatrix(double[][] values)
Create a matrix that matches the values double array
|
MCLMatrix(int dimensionality)
Creates a square matrix with the given amount of rows and columns.
|
MCLMatrix(no.uib.cipr.matrix.Matrix matrix)
Creates a deep copy of the given Matrix.
|
MCLMatrix(no.uib.cipr.matrix.Matrix matrix,
boolean deepCopy)
Creates either a deep or shallow copy of the given Matrix.
|
| Modifier and Type | Method and Description |
|---|---|
MCLMatrix |
copy()
Creates a (deep) copy of this Matrix.
|
static MCLMatrix |
identity(int dimensionality)
Creates an identity matrix (diagonal places are 1, rest is 0) of the
given dimensionality.
|
multAdd, multAdd, rank1, solve, solve, transABmultAdd, transAmultAdd, transBmultAdd, transMultAdd, transSolve, transSolveadd, add, check, checkMultAdd, checkMultAdd, checkRank1, checkRank1, checkRank2, checkRank2, checkSize, checkSolve, checkSolve, checkTransABmultAdd, checkTransAmultAdd, checkTransBmultAdd, checkTransMultAdd, checkTranspose, checkTranspose, checkTransRank1, checkTransRank2, isSquare, iterator, max, max, mult, mult, mult, mult, multAdd, multAdd, norm, norm1, normF, normInf, numColumns, numRows, rank1, rank1, rank1, rank1, rank1, rank2, rank2, rank2, rank2, scale, set, transABmult, transABmult, transABmultAdd, transAmult, transAmult, transAmultAdd, transBmult, transBmult, transBmultAdd, transMult, transMult, transMultAdd, transpose, transpose, transRank1, transRank1, transRank2, transRank2public MCLMatrix(int dimensionality)
dimensionality - The dimensionality.public MCLMatrix(no.uib.cipr.matrix.Matrix matrix)
matrix - The matrix to (deep) copy.public MCLMatrix(no.uib.cipr.matrix.Matrix matrix,
boolean deepCopy)
matrix - The matrix to copy.deepCopy - If true then deep copy, else shallow copy.public MCLMatrix(double[][] values)
values - public MCLMatrix copy()
copy in interface no.uib.cipr.matrix.Matrixcopy in class no.uib.cipr.matrix.DenseMatrixpublic static MCLMatrix identity(int dimensionality)
dimensionality - The dimensionality.