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

  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
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) {
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...]
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,
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...]
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...]
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...]
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,
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...]
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 {
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...]
BlockFieldMatrix.java 681 throws MatrixIndexException {
    [all...]
BlockRealMatrix.java 706 throws MatrixIndexException {
    [all...]

Completed in 158 milliseconds