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
 BigMatrix BigMatrix.getSubMatrix(int startRow, int endRow, int startColumn, int endColumn)
          Gets a submatrix.
 BigMatrix BigMatrix.getSubMatrix(int[] selectedRows, int[] selectedColumns)
          Gets a submatrix.
 BigMatrix BigMatrix.getRowMatrix(int row)
          Returns the entries in row number row as a row matrix.
 BigMatrix BigMatrix.getColumnMatrix(int column)
          Returns the entries in column number column as a column matrix.
 BigDecimal[] BigMatrix.getRow(int row)
          Returns the entries in row number row as an array.
 double[] BigMatrix.getRowAsDoubleArray(int row)
          Returns the entries in row number row as an array of double values.
 BigDecimal[] BigMatrix.getColumn(int col)
          Returns the entries in column number col as an array.
 double[] BigMatrix.getColumnAsDoubleArray(int col)
          Returns the entries in column number col as an array of double values.
 BigDecimal BigMatrix.getEntry(int row, int column)
          Returns the entry in the specified row and column.
 double BigMatrix.getEntryAsDouble(int row, int column)
          Returns the entry in the specified row and column as a double.
 BigMatrix BigMatrixImpl.getSubMatrix(int startRow, int endRow, int startColumn, int endColumn)
          Gets a submatrix.
 BigMatrix BigMatrixImpl.getSubMatrix(int[] selectedRows, int[] selectedColumns)
          Gets a submatrix.
 void BigMatrixImpl.setSubMatrix(BigDecimal[][] subMatrix, int row, int column)
          Replace the submatrix starting at row, column using data in the input subMatrix array.
 BigMatrix BigMatrixImpl.getRowMatrix(int row)
          Returns the entries in row number row as a row matrix.
 BigMatrix BigMatrixImpl.getColumnMatrix(int column)
          Returns the entries in column number column as a column matrix.
 BigDecimal[] BigMatrixImpl.getRow(int row)
          Returns the entries in row number row as an array.
 double[] BigMatrixImpl.getRowAsDoubleArray(int row)
          Returns the entries in row number row as an array of double values.
 BigDecimal[] BigMatrixImpl.getColumn(int col)
          Returns the entries in column number col as an array.
 double[] BigMatrixImpl.getColumnAsDoubleArray(int col)
          Returns the entries in column number col as an array of double values.
 BigDecimal BigMatrixImpl.getEntry(int row, int column)
          Returns the entry in the specified row and column.
 double BigMatrixImpl.getEntryAsDouble(int row, int column)
          Returns the entry in the specified row and column as a double.
 RealMatrix RealMatrix.getSubMatrix(int startRow, int endRow, int startColumn, int endColumn)
          Gets a submatrix.
 RealMatrix RealMatrix.getSubMatrix(int[] selectedRows, int[] selectedColumns)
          Gets a submatrix.
 RealMatrix RealMatrix.getRowMatrix(int row)
          Returns the entries in row number row as a row matrix.
 RealMatrix RealMatrix.getColumnMatrix(int column)
          Returns the entries in column number column as a column matrix.
 double[] RealMatrix.getRow(int row)
          Returns the entries in row number row as an array.
 double[] RealMatrix.getColumn(int col)
          Returns the entries in column number col as an array.
 double RealMatrix.getEntry(int row, int column)
          Returns the entry in the specified row and column.
 RealMatrix RealMatrixImpl.getSubMatrix(int startRow, int endRow, int startColumn, int endColumn)
          Gets a submatrix.
 RealMatrix RealMatrixImpl.getSubMatrix(int[] selectedRows, int[] selectedColumns)
          Gets a submatrix.
 void RealMatrixImpl.setSubMatrix(double[][] subMatrix, int row, int column)
          Replace the submatrix starting at row, column using data in the input subMatrix array.
 RealMatrix RealMatrixImpl.getRowMatrix(int row)
          Returns the entries in row number row as a row matrix.
 RealMatrix RealMatrixImpl.getColumnMatrix(int column)
          Returns the entries in column number column as a column matrix.
 double[] RealMatrixImpl.getRow(int row)
          Returns the entries in row number row as an array.
 double[] RealMatrixImpl.getColumn(int col)
          Returns the entries in column number col as an array.
 double RealMatrixImpl.getEntry(int row, int column)
          Returns the entry in the specified row and column.
 



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