Uses of Class
org.apache.commons.math.linear.MatrixIndexException

Packages that use MatrixIndexException
org.apache.commons.math.linear Linear algebra support. 
 

Uses of MatrixIndexException in org.apache.commons.math.linear
 

Methods in org.apache.commons.math.linear that throw MatrixIndexException
 void RealMatrixImpl.addToEntry(int row, int column, double increment)
          Deprecated. Change an entry in the specified row and column.
 void RealMatrix.addToEntry(int row, int column, double increment)
          Change an entry in the specified row and column.
 void OpenMapRealMatrix.addToEntry(int row, int column, double increment)
          Change an entry in the specified row and column.
 void BlockRealMatrix.addToEntry(int row, int column, double increment)
          Change an entry in the specified row and column.
 void Array2DRowRealMatrix.addToEntry(int row, int column, double increment)
          Change an entry in the specified row and column.
abstract  void AbstractRealMatrix.addToEntry(int row, int column, double increment)
          Change an entry in the specified row and column.
 void SparseFieldMatrix.addToEntry(int row, int column, T increment)
          Change an entry in the specified row and column.
 void FieldMatrix.addToEntry(int row, int column, T increment)
          Change an entry in the specified row and column.
 void BlockFieldMatrix.addToEntry(int row, int column, T increment)
          Change an entry in the specified row and column.
 void Array2DRowFieldMatrix.addToEntry(int row, int column, T increment)
          Change an entry in the specified row and column.
abstract  void AbstractFieldMatrix.addToEntry(int row, int column, T increment)
          Change an entry in the specified row and column.
static void MatrixUtils.checkColumnIndex(AnyMatrix m, int column)
          Check if a column index is valid.
protected  void AbstractFieldMatrix.checkColumnIndex(int column)
          Check if a column index is valid.
protected  void AbstractRealVector.checkIndex(int index)
          Check if an index is valid.
static void MatrixUtils.checkSubMatrixIndex(AnyMatrix m, int[] selectedRows, int[] selectedColumns)
          Check if submatrix ranges indices are valid.
 void RealMatrix.copySubMatrix(int[] selectedRows, int[] selectedColumns, double[][] destination)
          Copy a submatrix.
 void AbstractRealMatrix.copySubMatrix(int[] selectedRows, int[] selectedColumns, double[][] destination)
          Copy a submatrix.
 void FieldMatrix.copySubMatrix(int[] selectedRows, int[] selectedColumns, T[][] destination)
          Copy a submatrix.
 void AbstractFieldMatrix.copySubMatrix(int[] selectedRows, int[] selectedColumns, T[][] destination)
          Copy a submatrix.
 void RealMatrix.copySubMatrix(int startRow, int endRow, int startColumn, int endColumn, 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 startRow, int endRow, int startColumn, int endColumn, T[][] destination)
          Copy a submatrix.
 void AbstractFieldMatrix.copySubMatrix(int startRow, int endRow, int startColumn, int endColumn, T[][] destination)
          Copy a submatrix.
 double[] RealMatrix.getColumn(int column)
          Returns the entries in column number col as an array.
 T[] FieldMatrix.getColumn(int column)
          Returns the entries in column number col as an array.
 double[] BlockRealMatrix.getColumn(int column)
          Returns the entries in column number col as an array.
 T[] BlockFieldMatrix.getColumn(int column)
          Returns the entries in column number col as an array.
 BigDecimal[] BigMatrixImpl.getColumn(int col)
          Deprecated. Returns the entries in column number col as an array.
 BigDecimal[] BigMatrix.getColumn(int col)
          Deprecated. Returns the entries in column number col as an array.
 double[] AbstractRealMatrix.getColumn(int column)
          Returns the entries in column number col as an array.
 T[] AbstractFieldMatrix.getColumn(int column)
          Returns the entries in column number col as an array.
 double[] BigMatrixImpl.getColumnAsDoubleArray(int col)
          Deprecated. Returns the entries in column number col as an array of double values.
 double[] BigMatrix.getColumnAsDoubleArray(int col)
          Deprecated. Returns the entries in column number col as an array of double values.
 RealMatrix RealMatrix.getColumnMatrix(int column)
          Returns the entries in column number column as a column matrix.
 FieldMatrix<T> FieldMatrix.getColumnMatrix(int column)
          Returns the entries in column number column as a column matrix.
 BlockRealMatrix BlockRealMatrix.getColumnMatrix(int column)
          Returns the entries in column number column as a column matrix.
 FieldMatrix<T> BlockFieldMatrix.getColumnMatrix(int column)
          Returns the entries in column number column as a column matrix.
 BigMatrix BigMatrixImpl.getColumnMatrix(int column)
          Deprecated. Returns the entries in column number column as a column matrix.
 BigMatrix BigMatrix.getColumnMatrix(int column)
          Deprecated. Returns the entries in column number column as a column matrix.
 RealMatrix AbstractRealMatrix.getColumnMatrix(int column)
          Returns the entries in column number column as a column matrix.
 FieldMatrix<T> AbstractFieldMatrix.getColumnMatrix(int column)
          Returns the entries in column number column as a column matrix.
 RealVector RealMatrix.getColumnVector(int column)
          Returns the entries in column number column as a vector.
 FieldVector<T> FieldMatrix.getColumnVector(int column)
          Returns the entries in column number column as a vector.
 RealVector BlockRealMatrix.getColumnVector(int column)
          Returns the entries in column number column as a vector.
 FieldVector<T> BlockFieldMatrix.getColumnVector(int column)
          Returns the entries in column number column as a vector.
 RealVector AbstractRealMatrix.getColumnVector(int column)
          Returns the entries in column number column as a vector.
 FieldVector<T> AbstractFieldMatrix.getColumnVector(int column)
          Returns the entries in column number column as a vector.
 T SparseFieldVector.getEntry(int index)
          Returns the entry in the specified index.
 double RealVector.getEntry(int index)
          Returns the entry in the specified index.
 double OpenMapRealVector.getEntry(int index)
          Returns the entry in the specified index.
 T FieldVector.getEntry(int index)
          Returns the entry in the specified index.
 double ArrayRealVector.getEntry(int index)
          Returns the entry in the specified index.
 T ArrayFieldVector.getEntry(int index)
          Returns the entry in the specified index.
 T SparseFieldMatrix.getEntry(int row, int column)
          Returns the entry in the specified row and column.
 double RealMatrixImpl.getEntry(int row, int column)
          Deprecated. Returns the entry in the specified row and column.
 double RealMatrix.getEntry(int row, int column)
          Returns the entry in the specified row and column.
 double OpenMapRealMatrix.getEntry(int row, int column)
          Returns the entry in the specified row and column.
 T FieldMatrix.getEntry(int row, int column)
          Returns the entry in the specified row and column.
 double BlockRealMatrix.getEntry(int row, int column)
          Returns the entry in the specified row and column.
 T BlockFieldMatrix.getEntry(int row, int column)
          Returns the entry in the specified row and column.
 BigDecimal BigMatrixImpl.getEntry(int row, int column)
          Deprecated. Returns the entry in the specified row and column.
 BigDecimal BigMatrix.getEntry(int row, int column)
          Deprecated. Returns the entry in the specified row and column.
 double Array2DRowRealMatrix.getEntry(int row, int column)
          Returns the entry in the specified row and column.
 T Array2DRowFieldMatrix.getEntry(int row, int column)
          Returns the entry in the specified row and column.
abstract  double AbstractRealMatrix.getEntry(int row, int column)
          Returns the entry in the specified row and column.
abstract  T AbstractFieldMatrix.getEntry(int row, int column)
          Returns the entry in the specified row and column.
 double BigMatrixImpl.getEntryAsDouble(int row, int column)
          Deprecated. Returns the entry in the specified row and column as a double.
 double BigMatrix.getEntryAsDouble(int row, int column)
          Deprecated. Returns the entry in the specified row and column as a double.
 double[] RealMatrix.getRow(int row)
          Returns the entries in row number row as an array.
 T[] FieldMatrix.getRow(int row)
          Returns the entries in row number row as an array.
 double[] BlockRealMatrix.getRow(int row)
          Returns the entries in row number row as an array.
 T[] BlockFieldMatrix.getRow(int row)
          Returns the entries in row number row as an array.
 BigDecimal[] BigMatrixImpl.getRow(int row)
          Deprecated. Returns the entries in row number row as an array.
 BigDecimal[] BigMatrix.getRow(int row)
          Deprecated. Returns the entries in row number row as an array.
 double[] AbstractRealMatrix.getRow(int row)
          Returns the entries in row number row as an array.
 T[] AbstractFieldMatrix.getRow(int row)
          Returns the entries in row number row as an array.
 double[] BigMatrixImpl.getRowAsDoubleArray(int row)
          Deprecated. Returns the entries in row number row as an array of double values.
 double[] BigMatrix.getRowAsDoubleArray(int row)
          Deprecated. Returns the entries in row number row as an array of double values.
 RealMatrix RealMatrix.getRowMatrix(int row)
          Returns the entries in row number row as a row matrix.
 FieldMatrix<T> FieldMatrix.getRowMatrix(int row)
          Returns the entries in row number row as a row matrix.
 BlockRealMatrix BlockRealMatrix.getRowMatrix(int row)
          Returns the entries in row number row as a row matrix.
 FieldMatrix<T> BlockFieldMatrix.getRowMatrix(int row)
          Returns the entries in row number row as a row matrix.
 BigMatrix BigMatrixImpl.getRowMatrix(int row)
          Deprecated. Returns the entries in row number row as a row matrix.
 BigMatrix BigMatrix.getRowMatrix(int row)
          Deprecated. Returns the entries in row number row as a row matrix.
 RealMatrix AbstractRealMatrix.getRowMatrix(int row)
          Returns the entries in row number row as a row matrix.
 FieldMatrix<T> AbstractFieldMatrix.getRowMatrix(int row)
          Returns the entries in row number row as a row matrix.
 RealVector RealMatrix.getRowVector(int row)
          Returns the entries in row number row as a vector.
 FieldVector<T> FieldMatrix.getRowVector(int row)
          Returns 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> BlockFieldMatrix.getRowVector(int row)
          Returns 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> AbstractFieldMatrix.getRowVector(int row)
          Returns the entries in row number row as a vector.
 RealMatrix RealMatrix.getSubMatrix(int[] selectedRows, int[] selectedColumns)
          Gets a submatrix.
 FieldMatrix<T> FieldMatrix.getSubMatrix(int[] selectedRows, int[] selectedColumns)
          Gets a submatrix.
 BigMatrix BigMatrixImpl.getSubMatrix(int[] selectedRows, int[] selectedColumns)
          Deprecated. Gets a submatrix.
 BigMatrix BigMatrix.getSubMatrix(int[] selectedRows, int[] selectedColumns)
          Deprecated. Gets a submatrix.
 RealMatrix AbstractRealMatrix.getSubMatrix(int[] selectedRows, int[] selectedColumns)
          Gets a submatrix.
 FieldMatrix<T> AbstractFieldMatrix.getSubMatrix(int[] selectedRows, int[] selectedColumns)
          Gets a submatrix.
 RealMatrix RealMatrix.getSubMatrix(int startRow, int endRow, int startColumn, int endColumn)
          Gets a submatrix.
 FieldMatrix<T> FieldMatrix.getSubMatrix(int startRow, int endRow, int startColumn, int endColumn)
          Gets a submatrix.
 BlockRealMatrix BlockRealMatrix.getSubMatrix(int startRow, int endRow, int startColumn, int endColumn)
          Gets a submatrix.
 FieldMatrix<T> BlockFieldMatrix.getSubMatrix(int startRow, int endRow, int startColumn, int endColumn)
          Gets a submatrix.
 BigMatrix BigMatrixImpl.getSubMatrix(int startRow, int endRow, int startColumn, int endColumn)
          Deprecated. Gets a submatrix.
 BigMatrix BigMatrix.getSubMatrix(int startRow, int endRow, int startColumn, int endColumn)
          Deprecated. Gets a submatrix.
 RealMatrix AbstractRealMatrix.getSubMatrix(int startRow, int endRow, int startColumn, int endColumn)
          Gets a submatrix.
 FieldMatrix<T> AbstractFieldMatrix.getSubMatrix(int startRow, int endRow, int startColumn, int endColumn)
          Gets a submatrix.
 FieldVector<T> SparseFieldVector.getSubVector(int index, int n)
          Get a subvector from consecutive elements.
 RealVector RealVector.getSubVector(int index, int n)
          Get a subvector from consecutive elements.
 OpenMapRealVector OpenMapRealVector.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.
 void RealMatrixImpl.multiplyEntry(int row, int column, double factor)
          Deprecated. Change an entry in the specified row and column.
 void RealMatrix.multiplyEntry(int row, int column, double factor)
          Change an entry in the specified row and column.
 void OpenMapRealMatrix.multiplyEntry(int row, int column, double factor)
          Change an entry in the specified row and column.
 void BlockRealMatrix.multiplyEntry(int row, int column, double factor)
          Change an entry in the specified row and column.
 void Array2DRowRealMatrix.multiplyEntry(int row, int column, double factor)
          Change an entry in the specified row and column.
abstract  void AbstractRealMatrix.multiplyEntry(int row, int column, double factor)
          Change an entry in the specified row and column.
 void SparseFieldMatrix.multiplyEntry(int row, int column, T factor)
          Change an entry in the specified row and column.
 void FieldMatrix.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 Array2DRowFieldMatrix.multiplyEntry(int row, int column, T factor)
          Change an entry in the specified row and column.
abstract  void AbstractFieldMatrix.multiplyEntry(int row, int column, T factor)
          Change an entry in the specified row and column.
 void ArrayFieldVector.set(int index, ArrayFieldVector<T> v)
          Set a set of consecutive elements.
 void ArrayRealVector.set(int index, ArrayRealVector v)
          Set a set of consecutive elements.
 void RealMatrix.setColumn(int column, double[] array)
          Sets the entries in column number column as a column matrix.
 void BlockRealMatrix.setColumn(int column, double[] array)
          Sets the entries in column number column as a column matrix.
 void AbstractRealMatrix.setColumn(int column, double[] array)
          Sets the entries in column number column as a column matrix.
 void FieldMatrix.setColumn(int column, T[] array)
          Sets the entries in column number column as a column matrix.
 void BlockFieldMatrix.setColumn(int column, T[] array)
          Sets the entries in column number column as a column matrix.
 void AbstractFieldMatrix.setColumn(int column, T[] array)
          Sets the entries in column number column as a column matrix.
 void FieldMatrix.setColumnMatrix(int column, FieldMatrix<T> matrix)
          Sets the entries in column number column as a column matrix.
 void BlockFieldMatrix.setColumnMatrix(int column, FieldMatrix<T> matrix)
          Sets the entries in column number column as a column matrix.
 void AbstractFieldMatrix.setColumnMatrix(int column, FieldMatrix<T> matrix)
          Sets the entries in column number column as a column matrix.
 void RealMatrix.setColumnMatrix(int column, RealMatrix matrix)
          Sets the entries in column number column as a column matrix.
 void BlockRealMatrix.setColumnMatrix(int column, RealMatrix matrix)
          Sets the entries in column number column as a column matrix.
 void AbstractRealMatrix.setColumnMatrix(int column, RealMatrix matrix)
          Sets the entries in column number column as a column matrix.
 void FieldMatrix.setColumnVector(int column, FieldVector<T> vector)
          Sets the entries in column number column as a vector.
 void BlockFieldMatrix.setColumnVector(int column, FieldVector<T> vector)
          Sets the entries in column number column as a vector.
 void AbstractFieldMatrix.setColumnVector(int column, FieldVector<T> vector)
          Sets the entries in column number column as a vector.
 void RealMatrix.setColumnVector(int column, RealVector vector)
          Sets the entries in column number column as a vector.
 void BlockRealMatrix.setColumnVector(int column, RealVector vector)
          Sets the entries in column number column as a vector.
 void AbstractRealMatrix.setColumnVector(int column, RealVector vector)
          Sets the entries in column number column as a vector.
 void RealVector.setEntry(int index, double value)
          Set a single element.
 void OpenMapRealVector.setEntry(int index, double value)
          Set a single element.
 void RealMatrixImpl.setEntry(int row, int column, double value)
          Deprecated. Set the entry in the specified row and column.
 void RealMatrix.setEntry(int row, int column, double value)
          Set the entry in the specified row and column.
 void OpenMapRealMatrix.setEntry(int row, int column, double 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 Array2DRowRealMatrix.setEntry(int row, int column, double 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 SparseFieldMatrix.setEntry(int row, int column, T 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 BlockFieldMatrix.setEntry(int row, int column, T 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.
abstract  void AbstractFieldMatrix.setEntry(int row, int column, T value)
          Set the entry in the specified row and column.
 void SparseFieldVector.setEntry(int index, T value)
          Set a single element.
 void FieldVector.setEntry(int index, T value)
          Set a single element.
 void RealMatrix.setRow(int row, double[] array)
          Sets the entries in row number row as a row matrix.
 void BlockRealMatrix.setRow(int row, double[] array)
          Sets the entries in row number row as a row matrix.
 void AbstractRealMatrix.setRow(int row, double[] array)
          Sets the entries in row number row as a row matrix.
 void FieldMatrix.setRow(int row, T[] array)
          Sets the entries in row number row as a row matrix.
 void BlockFieldMatrix.setRow(int row, T[] array)
          Sets the entries in row number row as a row matrix.
 void AbstractFieldMatrix.setRow(int row, T[] array)
          Sets the entries in row number row as a row matrix.
 void BlockFieldMatrix.setRowMatrix(int row, BlockFieldMatrix<T> matrix)
          Sets 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 FieldMatrix.setRowMatrix(int row, FieldMatrix<T> matrix)
          Sets the entries in row number row as a row matrix.
 void BlockFieldMatrix.setRowMatrix(int row, FieldMatrix<T> matrix)
          Sets the entries in row number row as a row matrix.
 void AbstractFieldMatrix.setRowMatrix(int row, FieldMatrix<T> matrix)
          Sets the entries in row number row as a row matrix.
 void RealMatrix.setRowMatrix(int row, RealMatrix matrix)
          Sets the entries in row number row as a row matrix.
 void BlockRealMatrix.setRowMatrix(int row, RealMatrix matrix)
          Sets the entries in row number row as a row matrix.
 void AbstractRealMatrix.setRowMatrix(int row, RealMatrix matrix)
          Sets the entries in row number row as a row matrix.
 void FieldMatrix.setRowVector(int row, FieldVector<T> vector)
          Sets the entries in row number row as a vector.
 void BlockFieldMatrix.setRowVector(int row, FieldVector<T> vector)
          Sets the entries in row number row as a vector.
 void AbstractFieldMatrix.setRowVector(int row, FieldVector<T> vector)
          Sets the entries in row number row as a vector.
 void RealMatrix.setRowVector(int row, RealVector vector)
          Sets the entries in row number row as a vector.
 void BlockRealMatrix.setRowVector(int row, RealVector vector)
          Sets the entries in row number row as a vector.
 void AbstractRealMatrix.setRowVector(int row, RealVector vector)
          Sets the entries in row number row as a vector.
 void BigMatrixImpl.setSubMatrix(BigDecimal[][] subMatrix, int row, int column)
          Deprecated. Replace the submatrix starting at row, column using data in the input subMatrix array.
 void RealMatrixImpl.setSubMatrix(double[][] subMatrix, int row, int column)
          Deprecated. 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 BlockRealMatrix.setSubMatrix(double[][] subMatrix, int row, int column)
          Replace the submatrix starting at row, column using data in the input subMatrix array.
 void Array2DRowRealMatrix.setSubMatrix(double[][] 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 FieldMatrix.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 Array2DRowFieldMatrix.setSubMatrix(T[][] subMatrix, int row, int column)
          Replace the submatrix starting at row, column using data in the input subMatrix array.
 void AbstractFieldMatrix.setSubMatrix(T[][] subMatrix, int row, int column)
          Replace the submatrix starting at row, column using data in the input subMatrix array.
 void RealVector.setSubVector(int index, double[] v)
          Set a set of consecutive elements.
 void OpenMapRealVector.setSubVector(int index, double[] v)
          Set a set of consecutive elements.
 void AbstractRealVector.setSubVector(int index, double[] v)
          Set a set of consecutive elements.
 void SparseFieldVector.setSubVector(int index, FieldVector<T> v)
          Set a set of consecutive elements.
 void FieldVector.setSubVector(int index, FieldVector<T> v)
          Set a set of consecutive elements.
 void RealVector.setSubVector(int index, RealVector v)
          Set a set of consecutive elements.
 void OpenMapRealVector.setSubVector(int index, RealVector v)
          Set a set of consecutive elements.
 void AbstractRealVector.setSubVector(int index, RealVector v)
          Set a set of consecutive elements.
 void SparseFieldVector.setSubVector(int index, T[] v)
          Set a set of consecutive elements.
 void FieldVector.setSubVector(int index, T[] v)
          Set a set of consecutive elements.
 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 Array2DRowFieldMatrix.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(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.
 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 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 RealMatrixImpl.walkInColumnOrder(RealMatrixChangingVisitor visitor, int startRow, int endRow, int startColumn, int endColumn)
          Deprecated. Visit (and possibly 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 Array2DRowRealMatrix.walkInColumnOrder(RealMatrixChangingVisitor visitor, int startRow, int endRow, int startColumn, int endColumn)
          Visit (and possibly 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 RealMatrixImpl.walkInColumnOrder(RealMatrixPreservingVisitor visitor, int startRow, int endRow, int startColumn, int endColumn)
          Deprecated. Visit (but don't 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.
 double Array2DRowRealMatrix.walkInColumnOrder(RealMatrixPreservingVisitor visitor, int startRow, int endRow, int startColumn, int endColumn)
          Visit (but don't 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 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 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 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 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.
 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.
 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 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 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 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 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 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.
 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 FieldMatrix.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(FieldMatrixChangingVisitor<T> visitor, int startRow, int endRow, int startColumn, int endColumn)
          Visit (and possibly 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 AbstractFieldMatrix.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.
 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.
 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 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 RealMatrixImpl.walkInRowOrder(RealMatrixChangingVisitor visitor, int startRow, int endRow, int startColumn, int endColumn)
          Deprecated. Visit (and possibly 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 BlockRealMatrix.walkInRowOrder(RealMatrixChangingVisitor visitor, int startRow, int endRow, int startColumn, int endColumn)
          Visit (and possibly change) some matrix entries in row order.
 double Array2DRowRealMatrix.walkInRowOrder(RealMatrixChangingVisitor visitor, int startRow, int endRow, int startColumn, int endColumn)
          Visit (and possibly 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 RealMatrixImpl.walkInRowOrder(RealMatrixPreservingVisitor visitor, int startRow, int endRow, int startColumn, int endColumn)
          Deprecated. Visit (but don't 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.
 double BlockRealMatrix.walkInRowOrder(RealMatrixPreservingVisitor visitor, int startRow, int endRow, int startColumn, int endColumn)
          Visit (but don't change) some matrix entries in row order.
 double Array2DRowRealMatrix.walkInRowOrder(RealMatrixPreservingVisitor visitor, int startRow, int endRow, int startColumn, int endColumn)
          Visit (but don't 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.
 



Copyright © 2003-2010 The Apache Software Foundation. All Rights Reserved.