Home | History | Annotate | Download | only in linear

Lines Matching defs:MatrixIndexException

597      * @exception MatrixIndexException if row or column selections are not valid
601 throws MatrixIndexException {
606 throw new MatrixIndexException(LocalizedFormats.INITIAL_ROW_AFTER_FINAL_ROW,
613 throw new MatrixIndexException(LocalizedFormats.INITIAL_COLUMN_AFTER_FINAL_COLUMN,
637 * @exception MatrixIndexException if supplied row or column index arrays
641 throws MatrixIndexException {
645 throw new MatrixIndexException(LocalizedFormats.EMPTY_SELECTED_ROW_INDEX_ARRAY);
647 throw new MatrixIndexException(LocalizedFormats.EMPTY_SELECTED_COLUMN_INDEX_ARRAY);
693 * @throws MatrixIndexException if subMatrix does not fit into this
701 throws MatrixIndexException {
754 * @throws MatrixIndexException if the specified row index is invalid
756 public BigMatrix getRowMatrix(int row) throws MatrixIndexException {
770 * @throws MatrixIndexException if the specified column index is invalid
772 public BigMatrix getColumnMatrix(int column) throws MatrixIndexException {
785 * Row indices start at 0. A <code>MatrixIndexException</code> is thrown
790 * @throws MatrixIndexException if the specified row index is not valid
792 public BigDecimal[] getRow(int row) throws MatrixIndexException {
804 * Row indices start at 0. A <code>MatrixIndexException</code> is thrown
809 * @throws MatrixIndexException if the specified row index is not valid
811 public double[] getRowAsDoubleArray(int row) throws MatrixIndexException {
824 * Column indices start at 0. A <code>MatrixIndexException</code> is thrown
829 * @throws MatrixIndexException if the specified column index is not valid
831 public BigDecimal[] getColumn(int col) throws MatrixIndexException {
845 * Column indices start at 0. A <code>MatrixIndexException</code> is thrown
850 * @throws MatrixIndexException if the specified column index is not valid
852 public double[] getColumnAsDoubleArray(int col) throws MatrixIndexException {
870 * otherwise a <code>MatrixIndexException</code> is thrown.</p>
875 * @throws MatrixIndexException if the row or column index is not valid
878 throws MatrixIndexException {
882 MatrixIndexException(
896 * otherwise a <code>MatrixIndexException</code> is thrown.</p>
901 * @throws MatrixIndexException if the row
904 public double getEntryAsDouble(int row, int column) throws MatrixIndexException {