Package org.hipparchus.linear
Interface FieldMatrixPreservingVisitor<T extends FieldElement<?>>
- Type Parameters:
T
- the type of the field elements
- All Known Implementing Classes:
DefaultFieldMatrixPreservingVisitor
public interface FieldMatrixPreservingVisitor<T extends FieldElement<?>>
Interface defining a visitor for matrix entries.
-
Method Summary
-
Method Details
-
start
void start(int rows, int columns, int startRow, int endRow, int startColumn, int endColumn) Start visiting a matrix.This method is called once before any entry of the matrix is visited.
- Parameters:
rows
- number of rows of the matrixcolumns
- number of columns of the matrixstartRow
- Initial row indexendRow
- Final row index (inclusive)startColumn
- Initial column indexendColumn
- Final column index (inclusive)
-
visit
Visit one matrix entry.- Parameters:
row
- row index of the entrycolumn
- column index of the entryvalue
- current value of the entry
-
end
T end()End visiting a matrix.This method is called once after all entries of the matrix have been visited.
- Returns:
- the value that the
walkInXxxOrder
must return
-