Uses of Class
dev.nm.algebra.linear.matrix.MatrixAccessException
-
-
Uses of MatrixAccessException in dev.nm.algebra.linear.matrix.doubles
Methods in dev.nm.algebra.linear.matrix.doubles that throw MatrixAccessException Modifier and Type Method Description double
ImmutableMatrix. get(int i, int j)
double
MatrixAccess. get(int i, int j)
Get the matrix entry at [i,j].Vector
ImmutableMatrix. getColumn(int j)
Vector
Matrix. getColumn(int j)
Get the specified column in the matrix as a vector.Vector
ImmutableMatrix. getRow(int i)
Vector
Matrix. getRow(int i)
Get the specified row in the matrix as a vector.void
ImmutableMatrix. set(int row, int col, double value)
void
MatrixAccess. set(int i, int j, double value)
Set the matrix entry at [i,j] to a value. -
Uses of MatrixAccessException in dev.nm.algebra.linear.matrix.doubles.matrixtype
Methods in dev.nm.algebra.linear.matrix.doubles.matrixtype that throw MatrixAccessException Modifier and Type Method Description double
DefaultMatrixStorage. get(int row, int col)
double
PermutationMatrix. get(int i, int j)
Vector
DefaultMatrixStorage. getColumn(int j)
Get a column.Vector
GivensMatrix. getColumn(int j)
Vector
PermutationMatrix. getColumn(int j)
Vector
DefaultMatrixStorage. getRow(int i)
Get a row.Vector
GivensMatrix. getRow(int i)
Vector
PermutationMatrix. getRow(int i)
void
DefaultMatrixStorage. set(int row, int col, double value)
void
PermutationMatrix. set(int i, int j, double value)
Deprecated.use the swap functions instead -
Uses of MatrixAccessException in dev.nm.algebra.linear.matrix.doubles.matrixtype.dense
Methods in dev.nm.algebra.linear.matrix.doubles.matrixtype.dense that throw MatrixAccessException Modifier and Type Method Description double
DenseData. get(int i, int j)
double
DenseMatrix. get(int i, int j)
void
DenseData. set(int i, int j, double value)
void
DenseMatrix. set(int i, int j, double value)
-
Uses of MatrixAccessException in dev.nm.algebra.linear.matrix.doubles.matrixtype.dense.triangle
Methods in dev.nm.algebra.linear.matrix.doubles.matrixtype.dense.triangle that throw MatrixAccessException Modifier and Type Method Description double
LowerTriangularMatrix. get(int i, int j)
double
SymmetricMatrix. get(int i, int j)
double
UpperTriangularMatrix. get(int i, int j)
Vector
SymmetricMatrix. getColumn(int j)
Vector
SymmetricMatrix. getRow(int i)
void
LowerTriangularMatrix. set(int i, int j, double value)
void
SymmetricMatrix. set(int row, int col, double value)
void
UpperTriangularMatrix. set(int i, int j, double value)
-
Uses of MatrixAccessException in dev.nm.algebra.linear.matrix.doubles.matrixtype.sparse
Methods in dev.nm.algebra.linear.matrix.doubles.matrixtype.sparse that throw MatrixAccessException Modifier and Type Method Description SparseVector
CSRSparseMatrix. getColumn(int j)
SparseVector
DOKSparseMatrix. getColumn(int j)
SparseVector
CSRSparseMatrix. getRow(int i)
SparseVector
DOKSparseMatrix. getRow(int i)
-
Uses of MatrixAccessException in dev.nm.algebra.linear.matrix.doubles.operation
Methods in dev.nm.algebra.linear.matrix.doubles.operation that throw MatrixAccessException Modifier and Type Method Description double
ColumnBindMatrix. get(int i, int j)
double
DiagonalSum. get(int i, int j)
double
FastKroneckerProduct. get(int i, int j)
Vector
ColumnBindMatrix. getColumn(int j)
Vector
DiagonalSum. getColumn(int j)
DenseVector
FastKroneckerProduct. getColumn(int j)
Vector
ColumnBindMatrix. getRow(int i)
Vector
DiagonalSum. getRow(int i)
DenseVector
FastKroneckerProduct. getRow(int i)
void
ColumnBindMatrix. set(int i, int j, double value)
void
DiagonalSum. set(int i, int j, double value)
void
ElementaryOperation. set(int i, int j, double value)
Deprecated.void
FastKroneckerProduct. set(int i, int j, double value)
void
SubMatrixRef. set(int i, int j, double value)
Deprecated.SubMatrixRef is immutable -
Uses of MatrixAccessException in dev.nm.algebra.linear.matrix.generic
Methods in dev.nm.algebra.linear.matrix.generic that throw MatrixAccessException Modifier and Type Method Description F
GenericMatrixAccess. get(int i, int j)
Get the matrix entry at [i,j].void
GenericMatrixAccess. set(int i, int j, F value)
Set the matrix entry at [i,j] to a value. -
Uses of MatrixAccessException in dev.nm.algebra.linear.matrix.generic.matrixtype
Methods in dev.nm.algebra.linear.matrix.generic.matrixtype that throw MatrixAccessException Modifier and Type Method Description F
GenericFieldMatrix. get(int row, int col)
void
GenericFieldMatrix. set(int row, int col, F value)
-
Uses of MatrixAccessException in dev.nm.misc.datastructure
Methods in dev.nm.misc.datastructure that throw MatrixAccessException Modifier and Type Method Description Vector
FlexibleTable. getColumn(int col)
Vector
FlexibleTable. getRow(int row)
-