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

  /external/apache-commons-math/src/main/java/org/apache/commons/math/
DimensionMismatchException.java 29 public class DimensionMismatchException extends MathException {
45 public DimensionMismatchException(final int dimension1, final int dimension2) {
  /external/apache-commons-math/src/main/java/org/apache/commons/math/exception/
DimensionMismatchException.java 27 public class DimensionMismatchException extends MathIllegalNumberException {
41 public DimensionMismatchException(int wrong,
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/
SynchronizedMultivariateSummaryStatistics.java 19 import org.apache.commons.math.DimensionMismatchException;
56 throws DimensionMismatchException {
193 throws DimensionMismatchException {
210 throws DimensionMismatchException {
227 throws DimensionMismatchException {
244 throws DimensionMismatchException {
261 throws DimensionMismatchException {
278 throws DimensionMismatchException {
295 throws DimensionMismatchException {
MultivariateSummaryStatistics.java 22 import org.apache.commons.math.DimensionMismatchException;
143 * @throws DimensionMismatchException if the length of the array
147 throws DimensionMismatchException {
412 * @throws DimensionMismatchException if the array dimension
419 throws DimensionMismatchException, IllegalStateException {
442 * @throws DimensionMismatchException if the array dimension
448 throws DimensionMismatchException {
469 * @throws DimensionMismatchException if the array dimension
475 throws DimensionMismatchException {
496 * @throws DimensionMismatchException if the array dimensio
    [all...]
AbstractUnivariateStatistic.java 20 import org.apache.commons.math.exception.DimensionMismatchException;
202 throw new DimensionMismatchException(weights.length, values.length);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/interpolation/
TricubicSplineInterpolatingFunction.java 20 import org.apache.commons.math.exception.DimensionMismatchException;
140 * @throws DimensionMismatchException if the various arrays do not contain
164 throw new DimensionMismatchException(xLen, f.length);
167 throw new DimensionMismatchException(xLen, dFdX.length);
170 throw new DimensionMismatchException(xLen, dFdY.length);
173 throw new DimensionMismatchException(xLen, dFdZ.length);
176 throw new DimensionMismatchException(xLen, d2FdXdY.length);
179 throw new DimensionMismatchException(xLen, d2FdXdZ.length);
182 throw new DimensionMismatchException(xLen, d2FdYdZ.length);
185 throw new DimensionMismatchException(xLen, d3FdXdYdZ.length)
    [all...]
LinearInterpolator.java 19 import org.apache.commons.math.exception.DimensionMismatchException;
37 * @throws DimensionMismatchException if {@code x} and {@code y}
46 throw new DimensionMismatchException(x.length, y.length);
SmoothingPolynomialBicubicSplineInterpolator.java 19 import org.apache.commons.math.exception.DimensionMismatchException;
82 throw new DimensionMismatchException(xval.length, fval.length);
90 throw new DimensionMismatchException(fval[i].length, yLen);
MicrosphereInterpolatingFunction.java 24 import org.apache.commons.math.DimensionMismatchException;
141 * @throws DimensionMismatchException if the lengths of {@code yval} and
152 throws DimensionMismatchException, NoDataException {
158 throw new DimensionMismatchException(xval.length, yval.length);
169 throw new DimensionMismatchException(xvalI.length, dimension);
BicubicSplineInterpolatingFunction.java 19 import org.apache.commons.math.DimensionMismatchException;
86 * @throws DimensionMismatchException if the various arrays do not contain
98 throws DimensionMismatchException {
106 throw new DimensionMismatchException(xLen, f.length);
109 throw new DimensionMismatchException(xLen, dFdX.length);
112 throw new DimensionMismatchException(xLen, dFdY.length);
115 throw new DimensionMismatchException(xLen, d2FdXdY.length);
130 throw new DimensionMismatchException(f[i].length, yLen);
133 throw new DimensionMismatchException(dFdX[i].length, yLen);
136 throw new DimensionMismatchException(dFdY[i].length, yLen)
    [all...]
BicubicSplineInterpolator.java 19 import org.apache.commons.math.DimensionMismatchException;
45 throw new DimensionMismatchException(xval.length, fval.length);
61 throw new DimensionMismatchException(fval[i].length, yLen);
SmoothingBicubicSplineInterpolator.java 19 import org.apache.commons.math.DimensionMismatchException;
58 throw new DimensionMismatchException(xval.length, zval.length);
74 throw new DimensionMismatchException(zval[i].length, yLen);
SplineInterpolator.java 19 import org.apache.commons.math.exception.DimensionMismatchException;
60 * @throws DimensionMismatchException if {@code x} and {@code y}
69 throw new DimensionMismatchException(x.length, y.length);
TricubicSplineInterpolator.java 19 import org.apache.commons.math.exception.DimensionMismatchException;
44 throw new DimensionMismatchException(xval.length, fval.length);
62 throw new DimensionMismatchException(fval[i].length, yLen);
67 throw new DimensionMismatchException(fval[i][j].length, zLen);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/random/
UncorrelatedRandomVectorGenerator.java 22 import org.apache.commons.math.exception.DimensionMismatchException;
57 throw new DimensionMismatchException(mean.length, standardDeviation.length);
CorrelatedRandomVectorGenerator.java 20 import org.apache.commons.math.DimensionMismatchException;
94 * @exception DimensionMismatchException if the mean and covariance
100 throws NotPositiveDefiniteMatrixException, DimensionMismatchException {
104 throw new DimensionMismatchException(mean.length, order);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/
VectorialMean.java 22 import org.apache.commons.math.DimensionMismatchException;
50 * @exception DimensionMismatchException if the vector does not have the right dimension
52 public void increment(double[] v) throws DimensionMismatchException {
54 throw new DimensionMismatchException(v.length, means.length);
VectorialCovariance.java 22 import org.apache.commons.math.DimensionMismatchException;
63 * @exception DimensionMismatchException if the vector does not have the right dimension
65 public void increment(double[] v) throws DimensionMismatchException {
67 throw new DimensionMismatchException(v.length, sums.length);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/fitting/
GaussianDerivativeFunction.java 23 import org.apache.commons.math.exception.DimensionMismatchException;
88 throw new DimensionMismatchException(3, parameters.length);
GaussianFunction.java 24 import org.apache.commons.math.exception.DimensionMismatchException;
102 throw new DimensionMismatchException(4, parameters.length);
ParametricGaussianFunction.java 22 import org.apache.commons.math.exception.DimensionMismatchException;
158 throw new DimensionMismatchException(4, parameters.length);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/util/
MultidimensionalCounter.java 20 import org.apache.commons.math.exception.DimensionMismatchException;
252 * @throws DimensionMismatchException if the size of {@code c}
260 throw new DimensionMismatchException(c.length, dimension);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/correlation/
PearsonsCorrelation.java 25 import org.apache.commons.math.exception.DimensionMismatchException;
231 throw new DimensionMismatchException(xArray.length, yArray.length);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
AbstractRealVector.java 25 import org.apache.commons.math.exception.DimensionMismatchException;
43 * @exception DimensionMismatchException if the vectors do not
54 * @exception DimensionMismatchException if the dimension is
58 throws DimensionMismatchException {
61 throw new DimensionMismatchException(d, n);

Completed in 292 milliseconds