Modifier and Type | Method and Description |
---|---|
double |
MatrixAccess.get(int i,
int j)
Get the matrix entry at [i,j].
|
double |
ImmutableMatrix.get(int i,
int 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 |
MatrixAccess.set(int i,
int j,
double value)
Set the matrix entry at [i,j] to a value.
|
void |
ImmutableMatrix.set(int row,
int col,
double value) |
Modifier and Type | Method and 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
|
Modifier and Type | Method and 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) |
Modifier and Type | Method and Description |
---|---|
double |
UpperTriangularMatrix.get(int i,
int j) |
double |
LowerTriangularMatrix.get(int i,
int j) |
double |
SymmetricMatrix.get(int i,
int j) |
Vector |
SymmetricMatrix.getColumn(int j) |
Vector |
SymmetricMatrix.getRow(int i) |
void |
UpperTriangularMatrix.set(int i,
int j,
double value) |
void |
LowerTriangularMatrix.set(int i,
int j,
double value) |
void |
SymmetricMatrix.set(int row,
int col,
double value) |
Modifier and Type | Method and Description |
---|---|
SparseVector |
DOKSparseMatrix.getColumn(int j) |
SparseVector |
CSRSparseMatrix.getColumn(int j) |
SparseVector |
DOKSparseMatrix.getRow(int i) |
SparseVector |
CSRSparseMatrix.getRow(int i) |
Modifier and Type | Method and Description |
---|---|
double |
FastKroneckerProduct.get(int i,
int j) |
double |
ColumnBindMatrix.get(int i,
int j) |
double |
DiagonalSum.get(int i,
int j) |
DenseVector |
FastKroneckerProduct.getColumn(int j) |
Vector |
ColumnBindMatrix.getColumn(int j) |
Vector |
DiagonalSum.getColumn(int j) |
DenseVector |
FastKroneckerProduct.getRow(int i) |
Vector |
ColumnBindMatrix.getRow(int i) |
Vector |
DiagonalSum.getRow(int i) |
void |
FastKroneckerProduct.set(int i,
int j,
double value) |
void |
ColumnBindMatrix.set(int i,
int j,
double value) |
void |
ElementaryOperation.set(int i,
int j,
double value)
Deprecated.
|
void |
DiagonalSum.set(int i,
int j,
double value) |
void |
SubMatrixRef.set(int i,
int j,
double value)
Deprecated.
SubMatrixRef is immutable
|
Modifier and Type | Method and 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.
|
Modifier and Type | Method and Description |
---|---|
F |
GenericFieldMatrix.get(int row,
int col) |
void |
GenericFieldMatrix.set(int row,
int col,
F value) |
Modifier and Type | Method and Description |
---|---|
Vector |
FlexibleTable.getColumn(int col) |
Vector |
FlexibleTable.getRow(int row) |
Copyright © 2010-2020 NM FinTech Ltd.. All Rights Reserved.