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

  /external/apache-commons-math/src/main/java/org/apache/commons/math/estimation/
EstimationException.java 18 package org.apache.commons.math.estimation;
25 * This class represents exceptions thrown by the estimation solvers.
29 * @deprecated as of 2.0, everything in package org.apache.commons.math.estimation has
EstimationProblem.java 18 package org.apache.commons.math.estimation;
21 * This interface represents an estimation problem.
23 * <p>This interface should be implemented by all real estimation
27 * <p>An estimation problem, as seen by a solver is a set of
29 * during the estimation through the {@link #getUnboundParameters
43 * @deprecated as of 2.0, everything in package org.apache.commons.math.estimation has
51 * Get the measurements of an estimation problem.
Estimator.java 18 package org.apache.commons.math.estimation;
21 * This interface represents solvers for estimation problems.
23 * <p>The classes which are devoted to solve estimation problems
35 * @deprecated as of 2.0, everything in package org.apache.commons.math.estimation has
43 * Solve an estimation problem.
52 * @param problem estimation problem to solve
67 * @param problem estimation problem
74 * @param problem estimation problem
84 * @param problem estimation problem
EstimatedParameter.java 18 package org.apache.commons.math.estimation;
22 /** This class represents the estimated parameters of an estimation problem.
24 * <p>The parameters of an estimation problem have a name, a value and
32 * @deprecated as of 2.0, everything in package org.apache.commons.math.estimation has
SimpleEstimationProblem.java 18 package org.apache.commons.math.estimation;
40 * @deprecated as of 2.0, everything in package org.apache.commons.math.estimation has
89 * Get the measurements of an estimation problem.
WeightedMeasurement.java 18 package org.apache.commons.math.estimation;
23 * This class represents measurements in estimation problems.
43 * steps of the estimation.</p>
49 * @deprecated as of 2.0, everything in package org.apache.commons.math.estimation has
GaussNewtonEstimator.java 18 package org.apache.commons.math.estimation;
32 * This class implements a solver for estimation problems.
34 * <p>This class solves estimation problems using a weighted least
40 * @deprecated as of 2.0, everything in package org.apache.commons.math.estimation has
138 * Solve an estimation problem using a least squares criterion.
154 * @param problem estimation problem to solve
AbstractEstimator.java 18 package org.apache.commons.math.estimation;
32 * settings, jacobian and error estimation.</p>
35 * @deprecated as of 2.0, everything in package org.apache.commons.math.estimation has
179 * @param problem estimation problem
194 * @param problem estimation problem
209 * @param problem estimation problem
250 * @param problem estimation problem
275 * Initialization of the common parts of the estimation.
279 * @param problem estimation problem to solve
302 * Solve an estimation problem
    [all...]
LevenbergMarquardtEstimator.java 17 package org.apache.commons.math.estimation;
102 * @deprecated as of 2.0, everything in package org.apache.commons.math.estimation has
220 * Solve an estimation problem using the Levenberg-Marquardt algorithm.
238 * @param problem estimation problem to solve
  /external/opencv3/modules/photo/src/
fast_nlmeans_denoising_invoker.hpp 226 IT estimation[pixelInfo<T>::channels], weights_sum[pixelInfo<WT>::channels]; local
228 estimation[channel_num] = 0;
241 incWithWeight<T, IT, WT>(estimation, weights_sum, weight, p);
245 divByWeightsSum<IT, UIT, pixelInfo<T>::channels, pixelInfo<WT>::channels>(estimation,
247 dst_.at<T>(i,j) = saturateCastFromArray<T, IT>(estimation);
fast_nlmeans_multi_denoising_invoker.hpp 246 IT estimation[pixelInfo<T>::channels], weights_sum[pixelInfo<WT>::channels]; local
248 estimation[channel_num] = 0;
267 incWithWeight<T, IT, WT>(estimation, weights_sum, weight, p);
272 divByWeightsSum<IT, UIT, pixelInfo<T>::channels, pixelInfo<WT>::channels>(estimation,
274 dst_.at<T>(i,j) = saturateCastFromArray<T, IT>(estimation);

Completed in 6238 milliseconds