Class DefaultRealMatrixPreservingVisitor

    • Constructor Detail

      • DefaultRealMatrixPreservingVisitor

        public DefaultRealMatrixPreservingVisitor()
    • Method Detail

      • start

        public 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.

        Specified by:
        start in interface RealMatrixPreservingVisitor
        Parameters:
        rows - number of rows of the matrix
        columns - number of columns of the matrix
        startRow - Initial row index
        endRow - Final row index (inclusive)
        startColumn - Initial column index
        endColumn - Final column index (inclusive)
      • visit

        public void visit​(int row,
                          int column,
                          double value)
        Visit one matrix entry.
        Specified by:
        visit in interface RealMatrixPreservingVisitor
        Parameters:
        row - row index of the entry
        column - column index of the entry
        value - current value of the entry
      • end

        public double end()
        End visiting a matrix.

        This method is called once after all entries of the matrix have been visited.

        Specified by:
        end in interface RealMatrixPreservingVisitor
        Returns:
        the value that the walkInXxxOrder must return