Home | History | Annotate | Download | only in linear

Lines Matching refs:MatrixIndexException

134      * @exception MatrixIndexException  if the indices are not valid
137 int endColumn) throws MatrixIndexException;
147 * @exception MatrixIndexException if row or column selections are not valid
150 throws MatrixIndexException;
158 * @throws MatrixIndexException if the specified row index is invalid
160 BigMatrix getRowMatrix(int row) throws MatrixIndexException;
168 * @throws MatrixIndexException if the specified column index is invalid
170 BigMatrix getColumnMatrix(int column) throws MatrixIndexException;
175 * Row indices start at 0. A <code>MatrixIndexException</code> is thrown
180 * @throws MatrixIndexException if the specified row index is not valid
182 BigDecimal[] getRow(int row) throws MatrixIndexException;
188 * Row indices start at 0. A <code>MatrixIndexException</code> is thrown
193 * @throws MatrixIndexException if the specified row index is not valid
195 double [] getRowAsDoubleArray(int row) throws MatrixIndexException;
200 * Column indices start at 0. A <code>MatrixIndexException</code> is thrown
205 * @throws MatrixIndexException if the specified column index is not valid
207 BigDecimal[] getColumn(int col) throws MatrixIndexException;
213 * Column indices start at 0. A <code>MatrixIndexException</code> is thrown
218 * @throws MatrixIndexException if the specified column index is not valid
220 double [] getColumnAsDoubleArray(int col) throws MatrixIndexException;
230 * otherwise a <code>MatrixIndexException</code> is thrown.</p>
235 * @throws MatrixIndexException if the row or column index is not valid
237 BigDecimal getEntry(int row, int column) throws MatrixIndexException;
247 * otherwise a <code>MatrixIndexException</code> is thrown.</p>
252 * @throws MatrixIndexException if the row or column index is not valid
254 double getEntryAsDouble(int row, int column) throws MatrixIndexException;