Searched refs:objective (Results 1 - 6 of 6) sorted by relevance

/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/general/
H A DAbstractLeastSquaresOptimizer.java69 * Target value for the objective functions at optimum.
83 /** Current objective function value. */
84 protected double[] objective; field in class:AbstractLeastSquaresOptimizer
220 objective = function.value(point);
221 if (objective.length != rows) {
223 objective.length, rows);
228 final double residual = targetValues[i] - objective[i];
364 * @return the point/value pair giving the optimal value for objective function
365 * @exception FunctionEvaluationException if the objective function throws one during
H A DGaussNewtonOptimizer.java73 // evaluate the objective function and its jacobian
77 current = new VectorialPointValuePair(point, objective);
86 final double residual = objective[i] - targetValues[i];
H A DLevenbergMarquardtOptimizer.java272 VectorialPointValuePair current = new VectorialPointValuePair(point, objective);
332 current = new VectorialPointValuePair(point, objective);
353 tmpVec = objective;
354 objective = oldObj;
432 current = new VectorialPointValuePair(point, objective);
451 tmpVec = objective;
452 objective = oldObj;
H A DNonLinearConjugateGradientOptimizer.java145 final double objective = computeObjectiveValue(point);
147 current = new RealPointValuePair(point, objective);
252 * the objective function gradient and the search direction. Its
254 * direction, i.e. when the objective function value is a local
278 // gradient of the objective function
/external/ceres-solver/scripts/
H A Dceres-solver.spec37 - A friendly API: build your objective function one term at a time
/external/clang/tools/scan-build/
H A Dccc-analyzer106 if ($Lang =~ /objective-c\+\+/) { return ".mii" };
107 if ($Lang =~ /objective-c/) { return ".mi"; }
412 'm' => 'objective-c',
413 'mi' => 'objective-c-cpp-output',
414 'mm' => 'objective-c++',
415 'mii' => 'objective-c++-cpp-output',
427 "objective-c" => 1,
430 "objective-c++" => 1,
432 "objective-c-cpp-output" => 1,

Completed in 1342 milliseconds