abstract void |
AbstractFieldMatrix.addToEntry(int row,
int column,
T increment) |
Change an entry in the specified row and column.
|
void |
AbstractRealMatrix.addToEntry(int row,
int column,
double increment) |
Adds (in place) the specified value to the specified entry of
this matrix.
|
void |
Array2DRowFieldMatrix.addToEntry(int row,
int column,
T increment) |
Change an entry in the specified row and column.
|
void |
ArrayRealVector.addToEntry(int index,
double increment) |
Change an entry at the specified index.
|
void |
BlockFieldMatrix.addToEntry(int row,
int column,
T increment) |
Change an entry in the specified row and column.
|
void |
BlockRealMatrix.addToEntry(int row,
int column,
double increment) |
Adds (in place) the specified value to the specified entry of
this matrix.
|
void |
DiagonalMatrix.addToEntry(int row,
int column,
double increment) |
Adds (in place) the specified value to the specified entry of
this matrix.
|
void |
FieldMatrix.addToEntry(int row,
int column,
T increment) |
Change an entry in the specified row and column.
|
void |
OpenMapRealMatrix.addToEntry(int row,
int column,
double increment) |
Adds (in place) the specified value to the specified entry of
this matrix.
|
void |
RealMatrix.addToEntry(int row,
int column,
double increment) |
Adds (in place) the specified value to the specified entry of
this matrix.
|
void |
RealVector.addToEntry(int index,
double increment) |
Change an entry at the specified index.
|
protected void |
AbstractFieldMatrix.checkColumnIndex(int column) |
Check if a column index is valid.
|
static void |
MatrixUtils.checkColumnIndex(AnyMatrix m,
int column) |
Check if a column index is valid.
|
protected void |
RealVector.checkIndex(int index) |
Check if an index is valid.
|
protected void |
RealVector.checkIndices(int start,
int end) |
Checks that the indices of a subvector are valid.
|
static void |
MatrixUtils.checkMatrixIndex(AnyMatrix m,
int row,
int column) |
Check if matrix indices are valid.
|
protected void |
AbstractFieldMatrix.checkRowIndex(int row) |
Check if a row index is valid.
|
static void |
MatrixUtils.checkRowIndex(AnyMatrix m,
int row) |
Check if a row index is valid.
|
protected void |
AbstractFieldMatrix.checkSubMatrixIndex(int[] selectedRows,
int[] selectedColumns) |
Check if submatrix ranges indices are valid.
|
protected void |
AbstractFieldMatrix.checkSubMatrixIndex(int startRow,
int endRow,
int startColumn,
int endColumn) |
Check if submatrix ranges indices are valid.
|
static void |
MatrixUtils.checkSubMatrixIndex(AnyMatrix m,
int[] selectedRows,
int[] selectedColumns) |
Check if submatrix ranges indices are valid.
|
static void |
MatrixUtils.checkSubMatrixIndex(AnyMatrix m,
int startRow,
int endRow,
int startColumn,
int endColumn) |
Check if submatrix ranges indices are valid.
|
void |
AbstractFieldMatrix.copySubMatrix(int[] selectedRows,
int[] selectedColumns,
T[][] destination) |
Copy a submatrix.
|
void |
AbstractFieldMatrix.copySubMatrix(int startRow,
int endRow,
int startColumn,
int endColumn,
T[][] destination) |
Copy a submatrix.
|
void |
AbstractRealMatrix.copySubMatrix(int[] selectedRows,
int[] selectedColumns,
double[][] destination) |
Copy a submatrix.
|
void |
AbstractRealMatrix.copySubMatrix(int startRow,
int endRow,
int startColumn,
int endColumn,
double[][] destination) |
Copy a submatrix.
|
void |
FieldMatrix.copySubMatrix(int[] selectedRows,
int[] selectedColumns,
T[][] destination) |
Copy a submatrix.
|
void |
FieldMatrix.copySubMatrix(int startRow,
int endRow,
int startColumn,
int endColumn,
T[][] destination) |
Copy a submatrix.
|
void |
RealMatrix.copySubMatrix(int[] selectedRows,
int[] selectedColumns,
double[][] destination) |
Copy a submatrix.
|
void |
RealMatrix.copySubMatrix(int startRow,
int endRow,
int startColumn,
int endColumn,
double[][] destination) |
Copy a submatrix.
|
T[] |
AbstractFieldMatrix.getColumn(int column) |
Get the entries in column number col as an array.
|
double[] |
AbstractRealMatrix.getColumn(int column) |
Get the entries at the given column index as an array.
|
T[] |
BlockFieldMatrix.getColumn(int column) |
Get the entries in column number col as an array.
|
double[] |
BlockRealMatrix.getColumn(int column) |
Get the entries at the given column index as an array.
|
T[] |
FieldMatrix.getColumn(int column) |
Get the entries in column number col as an array.
|
double[] |
RealMatrix.getColumn(int column) |
Get the entries at the given column index as an array.
|
FieldMatrix<T> |
AbstractFieldMatrix.getColumnMatrix(int column) |
Get the entries in column number column
as a column matrix.
|
RealMatrix |
AbstractRealMatrix.getColumnMatrix(int column) |
Get the entries at the given column index as a column matrix.
|
FieldMatrix<T> |
BlockFieldMatrix.getColumnMatrix(int column) |
Get the entries in column number column
as a column matrix.
|
BlockRealMatrix |
BlockRealMatrix.getColumnMatrix(int column) |
Get the entries at the given column index as a column matrix.
|
FieldMatrix<T> |
FieldMatrix.getColumnMatrix(int column) |
Get the entries in column number column
as a column matrix.
|
RealMatrix |
RealMatrix.getColumnMatrix(int column) |
Get the entries at the given column index as a column matrix.
|
FieldVector<T> |
AbstractFieldMatrix.getColumnVector(int column) |
Returns the entries in column number column
as a vector.
|
RealVector |
AbstractRealMatrix.getColumnVector(int column) |
Get the entries at the given column index as a vector.
|
FieldVector<T> |
BlockFieldMatrix.getColumnVector(int column) |
Returns the entries in column number column
as a vector.
|
RealVector |
BlockRealMatrix.getColumnVector(int column) |
Get the entries at the given column index as a vector.
|
FieldVector<T> |
FieldMatrix.getColumnVector(int column) |
Returns the entries in column number column
as a vector.
|
RealVector |
RealMatrix.getColumnVector(int column) |
Get the entries at the given column index as a vector.
|
abstract T |
AbstractFieldMatrix.getEntry(int row,
int column) |
Returns the entry in the specified row and column.
|
abstract double |
AbstractRealMatrix.getEntry(int row,
int column) |
Get the entry in the specified row and column.
|
T |
Array2DRowFieldMatrix.getEntry(int row,
int column) |
Returns the entry in the specified row and column.
|
double |
ArrayRealVector.getEntry(int index) |
Return the entry at the specified index.
|
T |
BlockFieldMatrix.getEntry(int row,
int column) |
Returns the entry in the specified row and column.
|
double |
BlockRealMatrix.getEntry(int row,
int column) |
Get the entry in the specified row and column.
|
double |
DiagonalMatrix.getEntry(int row,
int column) |
Get the entry in the specified row and column.
|
T |
FieldMatrix.getEntry(int row,
int column) |
Returns the entry in the specified row and column.
|
T |
FieldVector.getEntry(int index) |
Returns the entry in the specified index.
|
double |
OpenMapRealMatrix.getEntry(int row,
int column) |
Get the entry in the specified row and column.
|
double |
OpenMapRealVector.getEntry(int index) |
Return the entry at the specified index.
|
double |
RealMatrix.getEntry(int row,
int column) |
Get the entry in the specified row and column.
|
abstract double |
RealVector.getEntry(int index) |
Return the entry at the specified index.
|
T |
SparseFieldVector.getEntry(int index) |
Returns the entry in the specified index.
|
T[] |
AbstractFieldMatrix.getRow(int row) |
Get the entries in row number row as an array.
|
double[] |
AbstractRealMatrix.getRow(int row) |
Get the entries at the given row index.
|
T[] |
BlockFieldMatrix.getRow(int row) |
Get the entries in row number row as an array.
|
double[] |
BlockRealMatrix.getRow(int row) |
Get the entries at the given row index.
|
T[] |
FieldMatrix.getRow(int row) |
Get the entries in row number row as an array.
|
double[] |
RealMatrix.getRow(int row) |
Get the entries at the given row index.
|
FieldMatrix<T> |
AbstractFieldMatrix.getRowMatrix(int row) |
Get the entries in row number row
as a row matrix.
|
RealMatrix |
AbstractRealMatrix.getRowMatrix(int row) |
Get the entries at the given row index as a row matrix.
|
FieldMatrix<T> |
BlockFieldMatrix.getRowMatrix(int row) |
Get the entries in row number row
as a row matrix.
|
BlockRealMatrix |
BlockRealMatrix.getRowMatrix(int row) |
Get the entries at the given row index as a row matrix.
|
FieldMatrix<T> |
FieldMatrix.getRowMatrix(int row) |
Get the entries in row number row
as a row matrix.
|
RealMatrix |
RealMatrix.getRowMatrix(int row) |
Get the entries at the given row index as a row matrix.
|
FieldVector<T> |
AbstractFieldMatrix.getRowVector(int row) |
Get the entries in row number row
as a vector.
|
RealVector |
AbstractRealMatrix.getRowVector(int row) |
Returns the entries in row number row as a vector.
|
FieldVector<T> |
BlockFieldMatrix.getRowVector(int row) |
Get the entries in row number row
as a vector.
|
RealVector |
BlockRealMatrix.getRowVector(int row) |
Returns the entries in row number row as a vector.
|
FieldVector<T> |
FieldMatrix.getRowVector(int row) |
Get the entries in row number row
as a vector.
|
RealVector |
RealMatrix.getRowVector(int row) |
Returns the entries in row number row as a vector.
|
FieldMatrix<T> |
AbstractFieldMatrix.getSubMatrix(int[] selectedRows,
int[] selectedColumns) |
Get a submatrix.
|
FieldMatrix<T> |
AbstractFieldMatrix.getSubMatrix(int startRow,
int endRow,
int startColumn,
int endColumn) |
Get a submatrix.
|
RealMatrix |
AbstractRealMatrix.getSubMatrix(int[] selectedRows,
int[] selectedColumns) |
Gets a submatrix.
|
RealMatrix |
AbstractRealMatrix.getSubMatrix(int startRow,
int endRow,
int startColumn,
int endColumn) |
Gets a submatrix.
|
FieldMatrix<T> |
BlockFieldMatrix.getSubMatrix(int startRow,
int endRow,
int startColumn,
int endColumn) |
Get a submatrix.
|
BlockRealMatrix |
BlockRealMatrix.getSubMatrix(int startRow,
int endRow,
int startColumn,
int endColumn) |
Gets a submatrix.
|
FieldMatrix<T> |
FieldMatrix.getSubMatrix(int[] selectedRows,
int[] selectedColumns) |
Get a submatrix.
|
FieldMatrix<T> |
FieldMatrix.getSubMatrix(int startRow,
int endRow,
int startColumn,
int endColumn) |
Get a submatrix.
|
RealMatrix |
RealMatrix.getSubMatrix(int[] selectedRows,
int[] selectedColumns) |
Gets a submatrix.
|
RealMatrix |
RealMatrix.getSubMatrix(int startRow,
int endRow,
int startColumn,
int endColumn) |
Gets a submatrix.
|
FieldVector<T> |
ArrayFieldVector.getSubVector(int index,
int n) |
Get a subvector from consecutive elements.
|
RealVector |
ArrayRealVector.getSubVector(int index,
int n) |
Get a subvector from consecutive elements.
|
FieldVector<T> |
FieldVector.getSubVector(int index,
int n) |
Get a subvector from consecutive elements.
|
OpenMapRealVector |
OpenMapRealVector.getSubVector(int index,
int n) |
Get a subvector from consecutive elements.
|
abstract RealVector |
RealVector.getSubVector(int index,
int n) |
Get a subvector from consecutive elements.
|
FieldVector<T> |
SparseFieldVector.getSubVector(int index,
int n) |
Get a subvector from consecutive elements.
|
abstract void |
AbstractFieldMatrix.multiplyEntry(int row,
int column,
T factor) |
Change an entry in the specified row and column.
|
void |
AbstractRealMatrix.multiplyEntry(int row,
int column,
double factor) |
Multiplies (in place) the specified entry of this matrix by the
specified value.
|
void |
Array2DRowFieldMatrix.multiplyEntry(int row,
int column,
T factor) |
Change an entry in the specified row and column.
|
void |
BlockFieldMatrix.multiplyEntry(int row,
int column,
T factor) |
Change an entry in the specified row and column.
|
void |
BlockRealMatrix.multiplyEntry(int row,
int column,
double factor) |
Multiplies (in place) the specified entry of this matrix by the
specified value.
|
void |
DiagonalMatrix.multiplyEntry(int row,
int column,
double factor) |
Multiplies (in place) the specified entry of this matrix by the
specified value.
|
void |
FieldMatrix.multiplyEntry(int row,
int column,
T factor) |
Change an entry in the specified row and column.
|
void |
OpenMapRealMatrix.multiplyEntry(int row,
int column,
double factor) |
Multiplies (in place) the specified entry of this matrix by the
specified value.
|
void |
RealMatrix.multiplyEntry(int row,
int column,
double factor) |
Multiplies (in place) the specified entry of this matrix by the
specified value.
|
void |
ArrayFieldVector.set(int index,
ArrayFieldVector<T> v) |
Set a set of consecutive elements.
|
void |
AbstractFieldMatrix.setColumn(int column,
T[] array) |
Set the entries in column number column
as a column matrix.
|
void |
AbstractRealMatrix.setColumn(int column,
double[] array) |
Sets the specified column of this matrix to the entries
of the specified array .
|
void |
BlockFieldMatrix.setColumn(int column,
T[] array) |
Set the entries in column number column
as a column matrix.
|
void |
BlockRealMatrix.setColumn(int column,
double[] array) |
Sets the specified column of this matrix to the entries
of the specified array .
|
void |
FieldMatrix.setColumn(int column,
T[] array) |
Set the entries in column number column
as a column matrix.
|
void |
RealMatrix.setColumn(int column,
double[] array) |
Sets the specified column of this matrix to the entries
of the specified array .
|
void |
AbstractFieldMatrix.setColumnMatrix(int column,
FieldMatrix<T> matrix) |
Set the entries in column number column
as a column matrix.
|
void |
AbstractRealMatrix.setColumnMatrix(int column,
RealMatrix matrix) |
Sets the specified column of this matrix to the entries
of the specified column matrix .
|
void |
BlockFieldMatrix.setColumnMatrix(int column,
FieldMatrix<T> matrix) |
Set the entries in column number column
as a column matrix.
|
void |
BlockRealMatrix.setColumnMatrix(int column,
RealMatrix matrix) |
Sets the specified column of this matrix to the entries
of the specified column matrix .
|
void |
FieldMatrix.setColumnMatrix(int column,
FieldMatrix<T> matrix) |
Set the entries in column number column
as a column matrix.
|
void |
RealMatrix.setColumnMatrix(int column,
RealMatrix matrix) |
Sets the specified column of this matrix to the entries
of the specified column matrix .
|
void |
AbstractFieldMatrix.setColumnVector(int column,
FieldVector<T> vector) |
Set the entries in column number column
as a vector.
|
void |
AbstractRealMatrix.setColumnVector(int column,
RealVector vector) |
Sets the specified column of this matrix to the entries
of the specified vector .
|
void |
BlockFieldMatrix.setColumnVector(int column,
FieldVector<T> vector) |
Set the entries in column number column
as a vector.
|
void |
BlockRealMatrix.setColumnVector(int column,
RealVector vector) |
Sets the specified column of this matrix to the entries
of the specified vector .
|
void |
FieldMatrix.setColumnVector(int column,
FieldVector<T> vector) |
Set the entries in column number column
as a vector.
|
void |
RealMatrix.setColumnVector(int column,
RealVector vector) |
Sets the specified column of this matrix to the entries
of the specified vector .
|
abstract void |
AbstractFieldMatrix.setEntry(int row,
int column,
T value) |
Set the entry in the specified row and column.
|
abstract void |
AbstractRealMatrix.setEntry(int row,
int column,
double value) |
Set the entry in the specified row and column.
|
void |
Array2DRowFieldMatrix.setEntry(int row,
int column,
T value) |
Set the entry in the specified row and column.
|
void |
ArrayRealVector.setEntry(int index,
double value) |
Set a single element.
|
void |
BlockFieldMatrix.setEntry(int row,
int column,
T value) |
Set the entry in the specified row and column.
|
void |
BlockRealMatrix.setEntry(int row,
int column,
double value) |
Set the entry in the specified row and column.
|
void |
DiagonalMatrix.setEntry(int row,
int column,
double value) |
Set the entry in the specified row and column.
|
void |
FieldMatrix.setEntry(int row,
int column,
T value) |
Set the entry in the specified row and column.
|
void |
FieldVector.setEntry(int index,
T value) |
Set a single element.
|
void |
OpenMapRealMatrix.setEntry(int row,
int column,
double value) |
Set the entry in the specified row and column.
|
void |
OpenMapRealVector.setEntry(int index,
double value) |
Set a single element.
|
void |
RealMatrix.setEntry(int row,
int column,
double value) |
Set the entry in the specified row and column.
|
abstract void |
RealVector.setEntry(int index,
double value) |
Set a single element.
|
void |
SparseFieldVector.setEntry(int index,
T value) |
Set a single element.
|
void |
AbstractFieldMatrix.setRow(int row,
T[] array) |
Set the entries in row number row
as a row matrix.
|
void |
AbstractRealMatrix.setRow(int row,
double[] array) |
Sets the specified row of this matrix to the entries
of the specified array .
|
void |
BlockFieldMatrix.setRow(int row,
T[] array) |
Set the entries in row number row
as a row matrix.
|
void |
BlockRealMatrix.setRow(int row,
double[] array) |
Sets the specified row of this matrix to the entries
of the specified array .
|
void |
FieldMatrix.setRow(int row,
T[] array) |
Set the entries in row number row
as a row matrix.
|
void |
RealMatrix.setRow(int row,
double[] array) |
Sets the specified row of this matrix to the entries
of the specified array .
|
void |
AbstractFieldMatrix.setRowMatrix(int row,
FieldMatrix<T> matrix) |
Set the entries in row number row
as a row matrix.
|
void |
AbstractRealMatrix.setRowMatrix(int row,
RealMatrix matrix) |
Sets the specified row of this matrix to the entries of
the specified row matrix .
|
void |
BlockFieldMatrix.setRowMatrix(int row,
BlockFieldMatrix<T> matrix) |
Sets the entries in row number row
as a row matrix.
|
void |
BlockFieldMatrix.setRowMatrix(int row,
FieldMatrix<T> matrix) |
Set the entries in row number row
as a row matrix.
|
void |
BlockRealMatrix.setRowMatrix(int row,
BlockRealMatrix matrix) |
Sets the entries in row number row
as a row matrix.
|
void |
BlockRealMatrix.setRowMatrix(int row,
RealMatrix matrix) |
Sets the specified row of this matrix to the entries of
the specified row matrix .
|
void |
FieldMatrix.setRowMatrix(int row,
FieldMatrix<T> matrix) |
Set the entries in row number row
as a row matrix.
|
void |
RealMatrix.setRowMatrix(int row,
RealMatrix matrix) |
Sets the specified row of this matrix to the entries of
the specified row matrix .
|
void |
AbstractFieldMatrix.setRowVector(int row,
FieldVector<T> vector) |
Set the entries in row number row
as a vector.
|
void |
AbstractRealMatrix.setRowVector(int row,
RealVector vector) |
Sets the specified row of this matrix to the entries of
the specified vector .
|
void |
BlockFieldMatrix.setRowVector(int row,
FieldVector<T> vector) |
Set the entries in row number row
as a vector.
|
void |
BlockRealMatrix.setRowVector(int row,
RealVector vector) |
Sets the specified row of this matrix to the entries of
the specified vector .
|
void |
FieldMatrix.setRowVector(int row,
FieldVector<T> vector) |
Set the entries in row number row
as a vector.
|
void |
RealMatrix.setRowVector(int row,
RealVector vector) |
Sets the specified row of this matrix to the entries of
the specified vector .
|
void |
AbstractFieldMatrix.setSubMatrix(T[][] subMatrix,
int row,
int column) |
Replace the submatrix starting at (row, column) using data in the
input subMatrix array.
|
void |
AbstractRealMatrix.setSubMatrix(double[][] subMatrix,
int row,
int column) |
Replace the submatrix starting at row, column using data in the
input subMatrix array.
|
void |
Array2DRowFieldMatrix.setSubMatrix(T[][] subMatrix,
int row,
int column) |
Replace the submatrix starting at (row, column) using data in the
input subMatrix array.
|
void |
BlockFieldMatrix.setSubMatrix(T[][] subMatrix,
int row,
int column) |
Replace the submatrix starting at (row, column) using data in the
input subMatrix array.
|
void |
BlockRealMatrix.setSubMatrix(double[][] subMatrix,
int row,
int column) |
Replace the submatrix starting at row, column using data in the
input subMatrix array.
|
void |
FieldMatrix.setSubMatrix(T[][] subMatrix,
int row,
int column) |
Replace the submatrix starting at (row, column) using data in the
input subMatrix array.
|
void |
RealMatrix.setSubMatrix(double[][] subMatrix,
int row,
int column) |
Replace the submatrix starting at row, column using data in the
input subMatrix array.
|
void |
ArrayFieldVector.setSubVector(int index,
FieldVector<T> v) |
Set a set of consecutive elements.
|
void |
ArrayRealVector.setSubVector(int index,
double[] v) |
Set a set of consecutive elements.
|
void |
ArrayRealVector.setSubVector(int index,
RealVector v) |
Set a sequence of consecutive elements.
|
void |
FieldVector.setSubVector(int index,
FieldVector<T> v) |
Set a set of consecutive elements.
|
void |
OpenMapRealVector.setSubVector(int index,
RealVector v) |
Set a sequence of consecutive elements.
|
abstract void |
RealVector.setSubVector(int index,
RealVector v) |
Set a sequence of consecutive elements.
|
void |
SparseFieldVector.setSubVector(int index,
FieldVector<T> v) |
Set a set of consecutive elements.
|
T |
AbstractFieldMatrix.walkInColumnOrder(FieldMatrixChangingVisitor<T> visitor,
int startRow,
int endRow,
int startColumn,
int endColumn) |
Visit (and possibly change) some matrix entries in column order.
|
T |
AbstractFieldMatrix.walkInColumnOrder(FieldMatrixPreservingVisitor<T> visitor,
int startRow,
int endRow,
int startColumn,
int endColumn) |
Visit (but don't change) some matrix entries in column order.
|
double |
AbstractRealMatrix.walkInColumnOrder(RealMatrixChangingVisitor visitor,
int startRow,
int endRow,
int startColumn,
int endColumn) |
Visit (and possibly change) some matrix entries in column order.
|
double |
AbstractRealMatrix.walkInColumnOrder(RealMatrixPreservingVisitor visitor,
int startRow,
int endRow,
int startColumn,
int endColumn) |
Visit (but don't change) some matrix entries in column order.
|
T |
Array2DRowFieldMatrix.walkInColumnOrder(FieldMatrixChangingVisitor<T> visitor,
int startRow,
int endRow,
int startColumn,
int endColumn) |
Visit (and possibly change) some matrix entries in column order.
|
T |
Array2DRowFieldMatrix.walkInColumnOrder(FieldMatrixPreservingVisitor<T> visitor,
int startRow,
int endRow,
int startColumn,
int endColumn) |
Visit (but don't change) some matrix entries in column order.
|
T |
FieldMatrix.walkInColumnOrder(FieldMatrixChangingVisitor<T> visitor,
int startRow,
int endRow,
int startColumn,
int endColumn) |
Visit (and possibly change) some matrix entries in column order.
|
T |
FieldMatrix.walkInColumnOrder(FieldMatrixPreservingVisitor<T> visitor,
int startRow,
int endRow,
int startColumn,
int endColumn) |
Visit (but don't change) some matrix entries in column order.
|
double |
RealMatrix.walkInColumnOrder(RealMatrixChangingVisitor visitor,
int startRow,
int endRow,
int startColumn,
int endColumn) |
Visit (and possibly change) some matrix entries in column order.
|
double |
RealMatrix.walkInColumnOrder(RealMatrixPreservingVisitor visitor,
int startRow,
int endRow,
int startColumn,
int endColumn) |
Visit (but don't change) some matrix entries in column order.
|
T |
ArrayFieldVector.walkInDefaultOrder(FieldVectorChangingVisitor<T> visitor,
int start,
int end) |
Visits (and possibly alters) some entries of this vector in default order
(increasing index).
|
T |
ArrayFieldVector.walkInDefaultOrder(FieldVectorPreservingVisitor<T> visitor,
int start,
int end) |
Visits (but does not alter) some entries of this vector in default order
(increasing index).
|
double |
ArrayRealVector.walkInDefaultOrder(RealVectorChangingVisitor visitor,
int start,
int end) |
Visits (and possibly alters) some entries of this vector in default order
(increasing index).
|
double |
ArrayRealVector.walkInDefaultOrder(RealVectorPreservingVisitor visitor,
int start,
int end) |
Visits (but does not alter) some entries of this vector in default order
(increasing index).
|
double |
RealVector.walkInDefaultOrder(RealVectorChangingVisitor visitor,
int start,
int end) |
Visits (and possibly alters) some entries of this vector in default order
(increasing index).
|
double |
RealVector.walkInDefaultOrder(RealVectorPreservingVisitor visitor,
int start,
int end) |
Visits (but does not alter) some entries of this vector in default order
(increasing index).
|
T |
SparseFieldVector.walkInDefaultOrder(FieldVectorChangingVisitor<T> visitor,
int start,
int end) |
Visits (and possibly alters) some entries of this vector in default order
(increasing index).
|
T |
SparseFieldVector.walkInDefaultOrder(FieldVectorPreservingVisitor<T> visitor,
int start,
int end) |
Visits (but does not alter) some entries of this vector in default order
(increasing index).
|
T |
AbstractFieldMatrix.walkInOptimizedOrder(FieldMatrixChangingVisitor<T> visitor,
int startRow,
int endRow,
int startColumn,
int endColumn) |
Visit (and possibly change) some matrix entries using the fastest possible order.
|
T |
AbstractFieldMatrix.walkInOptimizedOrder(FieldMatrixPreservingVisitor<T> visitor,
int startRow,
int endRow,
int startColumn,
int endColumn) |
Visit (but don't change) some matrix entries using the fastest possible order.
|
double |
AbstractRealMatrix.walkInOptimizedOrder(RealMatrixChangingVisitor visitor,
int startRow,
int endRow,
int startColumn,
int endColumn) |
Visit (and possibly change) some matrix entries using the fastest possible order.
|
double |
AbstractRealMatrix.walkInOptimizedOrder(RealMatrixPreservingVisitor visitor,
int startRow,
int endRow,
int startColumn,
int endColumn) |
Visit (but don't change) some matrix entries using the fastest possible order.
|
T |
ArrayFieldVector.walkInOptimizedOrder(FieldVectorChangingVisitor<T> visitor,
int start,
int end) |
Visits (and possibly change) some entries of this vector in optimized
order.
|
T |
ArrayFieldVector.walkInOptimizedOrder(FieldVectorPreservingVisitor<T> visitor,
int start,
int end) |
Visits (but does not alter) some entries of this vector in optimized
order.
|
double |
ArrayRealVector.walkInOptimizedOrder(RealVectorChangingVisitor visitor,
int start,
int end) |
Visits (and possibly change) some entries of this vector in optimized
order.
|
double |
ArrayRealVector.walkInOptimizedOrder(RealVectorPreservingVisitor visitor,
int start,
int end) |
Visits (but does not alter) some entries of this vector in optimized
order.
|
T |
BlockFieldMatrix.walkInOptimizedOrder(FieldMatrixChangingVisitor<T> visitor,
int startRow,
int endRow,
int startColumn,
int endColumn) |
Visit (and possibly change) some matrix entries using the fastest possible order.
|
T |
BlockFieldMatrix.walkInOptimizedOrder(FieldMatrixPreservingVisitor<T> visitor,
int startRow,
int endRow,
int startColumn,
int endColumn) |
Visit (but don't change) some matrix entries using the fastest possible order.
|
double |
BlockRealMatrix.walkInOptimizedOrder(RealMatrixChangingVisitor visitor,
int startRow,
int endRow,
int startColumn,
int endColumn) |
Visit (and possibly change) some matrix entries using the fastest possible order.
|
double |
BlockRealMatrix.walkInOptimizedOrder(RealMatrixPreservingVisitor visitor,
int startRow,
int endRow,
int startColumn,
int endColumn) |
Visit (but don't change) some matrix entries using the fastest possible order.
|
T |
FieldMatrix.walkInOptimizedOrder(FieldMatrixChangingVisitor<T> visitor,
int startRow,
int endRow,
int startColumn,
int endColumn) |
Visit (and possibly change) some matrix entries using the fastest possible order.
|
T |
FieldMatrix.walkInOptimizedOrder(FieldMatrixPreservingVisitor<T> visitor,
int startRow,
int endRow,
int startColumn,
int endColumn) |
Visit (but don't change) some matrix entries using the fastest possible order.
|
double |
RealMatrix.walkInOptimizedOrder(RealMatrixChangingVisitor visitor,
int startRow,
int endRow,
int startColumn,
int endColumn) |
Visit (and possibly change) some matrix entries using the fastest possible order.
|
double |
RealMatrix.walkInOptimizedOrder(RealMatrixPreservingVisitor visitor,
int startRow,
int endRow,
int startColumn,
int endColumn) |
Visit (but don't change) some matrix entries using the fastest possible order.
|
double |
RealVector.walkInOptimizedOrder(RealVectorChangingVisitor visitor,
int start,
int end) |
Visits (and possibly change) some entries of this vector in optimized
order.
|
double |
RealVector.walkInOptimizedOrder(RealVectorPreservingVisitor visitor,
int start,
int end) |
Visits (but does not alter) some entries of this vector in optimized
order.
|
T |
SparseFieldVector.walkInOptimizedOrder(FieldVectorChangingVisitor<T> visitor,
int start,
int end) |
Visits (and possibly change) some entries of this vector in optimized
order.
|
T |
SparseFieldVector.walkInOptimizedOrder(FieldVectorPreservingVisitor<T> visitor,
int start,
int end) |
Visits (but does not alter) some entries of this vector in optimized
order.
|
T |
AbstractFieldMatrix.walkInRowOrder(FieldMatrixChangingVisitor<T> visitor,
int startRow,
int endRow,
int startColumn,
int endColumn) |
Visit (and possibly change) some matrix entries in row order.
|
T |
AbstractFieldMatrix.walkInRowOrder(FieldMatrixPreservingVisitor<T> visitor,
int startRow,
int endRow,
int startColumn,
int endColumn) |
Visit (but don't change) some matrix entries in row order.
|
double |
AbstractRealMatrix.walkInRowOrder(RealMatrixChangingVisitor visitor,
int startRow,
int endRow,
int startColumn,
int endColumn) |
Visit (and possibly change) some matrix entries in row order.
|
double |
AbstractRealMatrix.walkInRowOrder(RealMatrixPreservingVisitor visitor,
int startRow,
int endRow,
int startColumn,
int endColumn) |
Visit (but don't change) some matrix entries in row order.
|
T |
Array2DRowFieldMatrix.walkInRowOrder(FieldMatrixChangingVisitor<T> visitor,
int startRow,
int endRow,
int startColumn,
int endColumn) |
Visit (and possibly change) some matrix entries in row order.
|
T |
Array2DRowFieldMatrix.walkInRowOrder(FieldMatrixPreservingVisitor<T> visitor,
int startRow,
int endRow,
int startColumn,
int endColumn) |
Visit (but don't change) some matrix entries in row order.
|
T |
BlockFieldMatrix.walkInRowOrder(FieldMatrixChangingVisitor<T> visitor,
int startRow,
int endRow,
int startColumn,
int endColumn) |
Visit (and possibly change) some matrix entries in row order.
|
T |
BlockFieldMatrix.walkInRowOrder(FieldMatrixPreservingVisitor<T> visitor,
int startRow,
int endRow,
int startColumn,
int endColumn) |
Visit (but don't change) some matrix entries in row order.
|
double |
BlockRealMatrix.walkInRowOrder(RealMatrixChangingVisitor visitor,
int startRow,
int endRow,
int startColumn,
int endColumn) |
Visit (and possibly change) some matrix entries in row order.
|
double |
BlockRealMatrix.walkInRowOrder(RealMatrixPreservingVisitor visitor,
int startRow,
int endRow,
int startColumn,
int endColumn) |
Visit (but don't change) some matrix entries in row order.
|
T |
FieldMatrix.walkInRowOrder(FieldMatrixChangingVisitor<T> visitor,
int startRow,
int endRow,
int startColumn,
int endColumn) |
Visit (and possibly change) some matrix entries in row order.
|
T |
FieldMatrix.walkInRowOrder(FieldMatrixPreservingVisitor<T> visitor,
int startRow,
int endRow,
int startColumn,
int endColumn) |
Visit (but don't change) some matrix entries in row order.
|
double |
RealMatrix.walkInRowOrder(RealMatrixChangingVisitor visitor,
int startRow,
int endRow,
int startColumn,
int endColumn) |
Visit (and possibly change) some matrix entries in row order.
|
double |
RealMatrix.walkInRowOrder(RealMatrixPreservingVisitor visitor,
int startRow,
int endRow,
int startColumn,
int endColumn) |
Visit (but don't change) some matrix entries in row order.
|