HomeSort by relevance Sort by last modified time
    Searched refs:MatrixIndexException (Results 1 - 21 of 21) sorted by null

  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
RealMatrix.java 138 * @exception MatrixIndexException if the indices are not valid
141 throws MatrixIndexException;
151 * @exception MatrixIndexException if row or column selections are not valid
154 throws MatrixIndexException;
166 * @exception MatrixIndexException if the indices are not valid
171 throws MatrixIndexException, IllegalArgumentException;
181 * @exception MatrixIndexException if the indices are not valid
185 throws MatrixIndexException, IllegalArgumentException;
207 * @throws MatrixIndexException if subMatrix does not fit into this
215 throws MatrixIndexException;
    [all...]
BigMatrix.java 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 vali
    [all...]
MatrixIndexException.java 29 public class MatrixIndexException extends MathRuntimeException {
38 * @deprecated as of 2.2 replaced by {@link #MatrixIndexException(Localizable, Object...)}
41 public MatrixIndexException(final String pattern, final Object ... arguments) {
51 public MatrixIndexException(final Localizable pattern, final Object ... arguments) {
FieldMatrix.java 131 * @exception MatrixIndexException if the indices are not valid
134 throws MatrixIndexException;
144 * @exception MatrixIndexException if row or column selections are not valid
147 throws MatrixIndexException;
159 * @exception MatrixIndexException if the indices are not valid
164 throws MatrixIndexException, IllegalArgumentException;
174 * @exception MatrixIndexException if the indices are not valid
178 throws MatrixIndexException, IllegalArgumentException;
200 * @throws MatrixIndexException if subMatrix does not fit into this
208 throws MatrixIndexException;
    [all...]
FieldVector.java 263 * otherwise a {@link MatrixIndexException} is thrown.
267 * @throws MatrixIndexException if the index is not valid
271 throws MatrixIndexException;
277 * @exception MatrixIndexException if the index is
282 throws MatrixIndexException;
316 * @exception MatrixIndexException if the index is
320 throws MatrixIndexException;
326 * @exception MatrixIndexException if the index is
331 throws MatrixIndexException;
337 * @exception MatrixIndexException if the index i
    [all...]
AbstractFieldMatrix.java 289 throws MatrixIndexException {
307 throws MatrixIndexException {
333 throws MatrixIndexException, IllegalArgumentException {
376 throws MatrixIndexException, IllegalArgumentException {
400 throws MatrixIndexException {
435 throws MatrixIndexException {
450 throws MatrixIndexException, InvalidMatrixException {
468 throws MatrixIndexException {
483 throws MatrixIndexException, InvalidMatrixException {
501 throws MatrixIndexException {
    [all...]
Array2DRowRealMatrix.java 316 throws MatrixIndexException {
354 throws MatrixIndexException {
358 throw new MatrixIndexException(
366 throws MatrixIndexException {
370 throw new MatrixIndexException(
378 throws MatrixIndexException {
382 throw new MatrixIndexException(
390 throws MatrixIndexException {
394 throw new MatrixIndexException(
495 throws MatrixIndexException, MatrixVisitorException
    [all...]
RealMatrixImpl.java 317 throws MatrixIndexException {
356 throws MatrixIndexException {
360 throw new MatrixIndexException(
369 throws MatrixIndexException {
373 throw new MatrixIndexException(
382 throws MatrixIndexException {
386 throw new MatrixIndexException(
395 throws MatrixIndexException {
399 throw new MatrixIndexException(
503 throws MatrixIndexException, MatrixVisitorException
    [all...]
AbstractRealMatrix.java 263 throws MatrixIndexException {
281 throws MatrixIndexException {
307 throws MatrixIndexException, IllegalArgumentException {
350 throws MatrixIndexException, IllegalArgumentException {
374 throws MatrixIndexException {
411 throws MatrixIndexException {
426 throws MatrixIndexException, InvalidMatrixException {
444 throws MatrixIndexException {
459 throws MatrixIndexException, InvalidMatrixException {
477 throws MatrixIndexException {
    [all...]
SparseFieldMatrix.java 105 throws MatrixIndexException {
139 public T getEntry(int row, int column) throws MatrixIndexException {
154 throws MatrixIndexException {
170 throws MatrixIndexException {
Array2DRowFieldMatrix.java 308 throws MatrixIndexException {
346 throws MatrixIndexException {
350 throw new MatrixIndexException(
358 throws MatrixIndexException {
362 throw new MatrixIndexException(
370 throws MatrixIndexException {
374 throw new MatrixIndexException(
382 throws MatrixIndexException {
386 throw new MatrixIndexException(
487 throws MatrixIndexException, MatrixVisitorException
    [all...]
BigMatrixImpl.java 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 {
    [all...]
OpenMapRealMatrix.java 226 public double getEntry(int row, int column) throws MatrixIndexException {
241 throws MatrixIndexException {
254 throws MatrixIndexException {
269 throws MatrixIndexException {
BlockFieldMatrix.java 681 throws MatrixIndexException {
    [all...]
BlockRealMatrix.java 706 throws MatrixIndexException {
    [all...]
MatrixUtils.java 528 * @exception MatrixIndexException if index is not valid
532 throw new MatrixIndexException(LocalizedFormats.ROW_INDEX_OUT_OF_RANGE,
541 * @exception MatrixIndexException if index is not valid
544 throws MatrixIndexException {
546 throw new MatrixIndexException(LocalizedFormats.COLUMN_INDEX_OUT_OF_RANGE,
560 * @exception MatrixIndexException if the indices are not valid
568 throw new MatrixIndexException(LocalizedFormats.INITIAL_ROW_AFTER_FINAL_ROW,
575 throw new MatrixIndexException(LocalizedFormats.INITIAL_COLUMN_AFTER_FINAL_COLUMN,
589 * @exception MatrixIndexException if row or column selections are not valid
593 throws MatrixIndexException {
    [all...]
SparseFieldVector.java 307 public T getEntry(int index) throws MatrixIndexException {
319 throws MatrixIndexException {
469 public void setEntry(int index, T value) throws MatrixIndexException {
476 throws MatrixIndexException {
483 public void setSubVector(int index, T[] v) throws MatrixIndexException {
547 * @exception MatrixIndexException
550 private void checkIndex(final int index) throws MatrixIndexException {
552 throw new MatrixIndexException(LocalizedFormats.INDEX_OUT_OF_RANGE,
AbstractRealVector.java 68 * @exception MatrixIndexException if index is not valid
71 throws MatrixIndexException {
73 throw new MatrixIndexException(LocalizedFormats.INDEX_OUT_OF_RANGE,
79 public void setSubVector(int index, RealVector v) throws MatrixIndexException {
86 public void setSubVector(int index, double[] v) throws MatrixIndexException {
OpenMapRealVector.java 375 public OpenMapRealVector getSubVector(int index, int n) throws MatrixIndexException {
459 public double getEntry(int index) throws MatrixIndexException {
641 public void setEntry(int index, double value) throws MatrixIndexException {
652 public void setSubVector(int index, RealVector v) throws MatrixIndexException {
660 public void setSubVector(int index, double[] v) throws MatrixIndexException {
ArrayFieldVector.java 654 public T getEntry(int index) throws MatrixIndexException {
746 * @exception MatrixIndexException if the index is
750 throws MatrixIndexException {
859 * @exception MatrixIndexException if index is not valid
862 throws MatrixIndexException {
864 throw new MatrixIndexException(LocalizedFormats.INDEX_OUT_OF_RANGE,
ArrayRealVector.java 983 public double getEntry(int index) throws MatrixIndexException {
1077 * @exception MatrixIndexException if the index is
1081 throws MatrixIndexException {
    [all...]

Completed in 93 milliseconds