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

  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
DecompositionSolver.java 44 * @exception InvalidMatrixException if decomposed matrix is singular
47 throws IllegalArgumentException, InvalidMatrixException;
55 * @exception InvalidMatrixException if decomposed matrix is singular
58 throws IllegalArgumentException, InvalidMatrixException;
66 * @exception InvalidMatrixException if decomposed matrix is singular
69 throws IllegalArgumentException, InvalidMatrixException;
79 * @throws InvalidMatrixException if decomposed matrix is singular
82 throws InvalidMatrixException;
FieldDecompositionSolver.java 46 * @exception InvalidMatrixException if decomposed matrix is singular
49 throws IllegalArgumentException, InvalidMatrixException;
57 * @exception InvalidMatrixException if decomposed matrix is singular
60 throws IllegalArgumentException, InvalidMatrixException;
68 * @exception InvalidMatrixException if decomposed matrix is singular
71 throws IllegalArgumentException, InvalidMatrixException;
81 * @throws InvalidMatrixException if decomposed matrix is singular
84 throws InvalidMatrixException;
InvalidMatrixException.java 30 public class InvalidMatrixException extends MathRuntimeException {
40 * @deprecated since 2.2 replaced by {@link #InvalidMatrixException(Localizable, Object...)}
43 public InvalidMatrixException(final String pattern, final Object ... arguments) {
53 public InvalidMatrixException(final Localizable pattern, final Object ... arguments) {
63 public InvalidMatrixException(final Throwable cause) {
SingularMatrixException.java 28 public class SingularMatrixException extends InvalidMatrixException {
BigMatrix.java 267 * @throws org.apache.commons.math.linear.InvalidMatrixException if
270 BigMatrix inverse() throws InvalidMatrixException;
276 *@throws org.apache.commons.math.linear.InvalidMatrixException if
279 BigDecimal getDeterminant() throws InvalidMatrixException;
314 * @throws org.apache.commons.math.linear.InvalidMatrixException if this matrix is not square or is singular
316 BigDecimal[] solve(BigDecimal[] b) throws IllegalArgumentException, InvalidMatrixException;
327 * @throws org.apache.commons.math.linear.InvalidMatrixException if this matrix is not square or is singular
329 BigMatrix solve(BigMatrix b) throws IllegalArgumentException, InvalidMatrixException;
NonSquareMatrixException.java 28 public class NonSquareMatrixException extends InvalidMatrixException {
RealMatrix.java 235 * @throws InvalidMatrixException if the matrix dimensions do not match one
239 throws MatrixIndexException, InvalidMatrixException;
259 * @throws InvalidMatrixException if the matrix dimensions do not match one
263 throws MatrixIndexException, InvalidMatrixException;
283 * @throws InvalidMatrixException if the vector dimension does not match one
287 throws MatrixIndexException, InvalidMatrixException;
306 * @throws InvalidMatrixException if the vector dimension does not match one
310 throws MatrixIndexException, InvalidMatrixException;
331 * @throws InvalidMatrixException if the array size does not match one
335 throws MatrixIndexException, InvalidMatrixException;
    [all...]
EigenDecompositionImpl.java 93 * @exception InvalidMatrixException (wrapping a
98 throws InvalidMatrixException {
106 throw new InvalidMatrixException(
117 * @exception InvalidMatrixException (wrapping a
123 throws InvalidMatrixException {
159 public RealMatrix getV() throws InvalidMatrixException {
174 public RealMatrix getD() throws InvalidMatrixException {
183 public RealMatrix getVT() throws InvalidMatrixException {
199 public double[] getRealEigenvalues() throws InvalidMatrixException {
204 public double getRealEigenvalue(final int i) throws InvalidMatrixException,
    [all...]
SingularValueDecompositionImpl.java 71 * @exception InvalidMatrixException
77 throws InvalidMatrixException {
157 public RealMatrix getU() throws InvalidMatrixException {
164 public RealMatrix getUT() throws InvalidMatrixException {
176 public RealMatrix getS() throws InvalidMatrixException {
188 public double[] getSingularValues() throws InvalidMatrixException {
193 public RealMatrix getV() throws InvalidMatrixException {
200 public RealMatrix getVT() throws InvalidMatrixException {
243 public double getNorm() throws InvalidMatrixException {
248 public double getConditionNumber() throws InvalidMatrixException {
    [all...]
FieldMatrix.java 228 * @throws InvalidMatrixException if the matrix dimensions do not match one
232 throws MatrixIndexException, InvalidMatrixException;
252 * @throws InvalidMatrixException if the matrix dimensions do not match one
256 throws MatrixIndexException, InvalidMatrixException;
276 * @throws InvalidMatrixException if the vector dimension does not match one
280 throws MatrixIndexException, InvalidMatrixException;
299 * @throws InvalidMatrixException if the vector dimension does not match one
303 throws MatrixIndexException, InvalidMatrixException;
324 * @throws InvalidMatrixException if the array size does not match one
328 throws MatrixIndexException, InvalidMatrixException;
    [all...]
CholeskyDecompositionImpl.java 212 throws IllegalArgumentException, InvalidMatrixException {
248 throws IllegalArgumentException, InvalidMatrixException {
291 * @exception InvalidMatrixException if decomposed matrix is singular
294 throws IllegalArgumentException, InvalidMatrixException {
300 throws IllegalArgumentException, InvalidMatrixException {
350 public RealMatrix getInverse() throws InvalidMatrixException {
LUDecompositionImpl.java 65 * @exception InvalidMatrixException if matrix is not square
68 throws InvalidMatrixException {
262 throws IllegalArgumentException, InvalidMatrixException {
303 throws IllegalArgumentException, InvalidMatrixException {
351 * @exception InvalidMatrixException if decomposed matrix is singular
354 throws IllegalArgumentException, InvalidMatrixException {
360 throws IllegalArgumentException, InvalidMatrixException {
417 public RealMatrix getInverse() throws InvalidMatrixException {
AbstractRealMatrix.java 426 throws MatrixIndexException, InvalidMatrixException {
432 throw new InvalidMatrixException(
459 throws MatrixIndexException, InvalidMatrixException {
465 throw new InvalidMatrixException(
483 throws MatrixIndexException, InvalidMatrixException {
488 throw new InvalidMatrixException(
506 throws MatrixIndexException, InvalidMatrixException {
511 throw new InvalidMatrixException(
538 throws MatrixIndexException, InvalidMatrixException {
543 throw new InvalidMatrixException(
    [all...]
QRDecompositionImpl.java 289 throws IllegalArgumentException, InvalidMatrixException {
338 throws IllegalArgumentException, InvalidMatrixException {
351 * @throws InvalidMatrixException if decomposed matrix is singular
354 throws IllegalArgumentException, InvalidMatrixException {
360 throws IllegalArgumentException, InvalidMatrixException {
447 throws InvalidMatrixException {
AbstractFieldMatrix.java 450 throws MatrixIndexException, InvalidMatrixException {
456 throw new InvalidMatrixException(
483 throws MatrixIndexException, InvalidMatrixException {
489 throw new InvalidMatrixException(
507 throws MatrixIndexException, InvalidMatrixException {
512 throw new InvalidMatrixException(
530 throws MatrixIndexException, InvalidMatrixException {
535 throw new InvalidMatrixException(
562 throws MatrixIndexException, InvalidMatrixException {
567 throw new InvalidMatrixException(
    [all...]
FieldLUDecompositionImpl.java 262 throws IllegalArgumentException, InvalidMatrixException {
305 throws IllegalArgumentException, InvalidMatrixException {
355 * @exception InvalidMatrixException if decomposed matrix is singular
358 throws IllegalArgumentException, InvalidMatrixException {
364 throws IllegalArgumentException, InvalidMatrixException {
422 public FieldMatrix<T> getInverse() throws InvalidMatrixException {
BigMatrixImpl.java     [all...]
BlockFieldMatrix.java     [all...]
BlockRealMatrix.java     [all...]
TriDiagonalTransformer.java 65 * @exception InvalidMatrixException if matrix is not square
68 throws InvalidMatrixException {
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/general/
GaussNewtonOptimizer.java 24 import org.apache.commons.math.linear.InvalidMatrixException;
119 } catch(InvalidMatrixException e) {
AbstractLeastSquaresOptimizer.java 26 import org.apache.commons.math.linear.InvalidMatrixException;
294 } catch (InvalidMatrixException ime) {
  /external/apache-commons-math/src/main/java/org/apache/commons/math/estimation/
GaussNewtonEstimator.java 23 import org.apache.commons.math.linear.InvalidMatrixException;
217 } catch(InvalidMatrixException e) {
AbstractEstimator.java 23 import org.apache.commons.math.linear.InvalidMatrixException;
241 } catch (InvalidMatrixException ime) {

Completed in 228 milliseconds