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