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

  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/
DifferentiableUnivariateMatrixFunction.java 29 * Returns the derivative of the function
31 * @return the derivative function
33 UnivariateMatrixFunction derivative(); method in interface:DifferentiableUnivariateMatrixFunction
DifferentiableUnivariateRealFunction.java 28 * Returns the derivative of the function
30 * @return the derivative function
32 UnivariateRealFunction derivative(); method in interface:DifferentiableUnivariateRealFunction
DifferentiableUnivariateVectorialFunction.java 29 * Returns the derivative of the function
31 * @return the derivative function
33 UnivariateVectorialFunction derivative(); method in interface:DifferentiableUnivariateVectorialFunction
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/fitting/
HarmonicFunction.java 55 public HarmonicFunction derivative() { method in class:HarmonicFunction
GaussianFunction.java 114 public UnivariateRealFunction derivative() { method in class:GaussianFunction
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/
NewtonSolver.java 83 * @throws FunctionEvaluationException if an error occurs evaluating the function or derivative
102 * @throws FunctionEvaluationException if an error occurs evaluating the function or derivative
123 * @throws FunctionEvaluationException if an error occurs evaluating the function or derivative
144 * @throws FunctionEvaluationException if an error occurs evaluating the function or derivative
156 final UnivariateRealFunction derivative = local
157 ((DifferentiableUnivariateRealFunction) f).derivative();
167 x1 = x0 - (f.value(x0) / derivative.value(x0));
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/polynomials/
PolynomialSplineFunction.java 150 * Returns the derivative of the polynomial spline function as a UnivariateRealFunction
151 * @return the derivative function
153 public UnivariateRealFunction derivative() { method in class:PolynomialSplineFunction
158 * Returns the derivative of the polynomial spline function as a PolynomialSplineFunction
160 * @return the derivative function
PolynomialFunction.java 226 * Returns the coefficients of the derivative of the polynomial with the given coefficients.
229 * @return the coefficients of the derivative or null if coefficients has length 1.
249 * Returns the derivative as a PolynomialRealFunction
251 * @return the derivative polynomial
258 * Returns the derivative as a UnivariateRealFunction
260 * @return the derivative function
262 public UnivariateRealFunction derivative() { method in class:PolynomialFunction
  /external/ceres-solver/internal/ceres/
polynomial_test.cc 227 const Vector derivative = DifferentiatePolynomial(polynomial); local
228 EXPECT_EQ(derivative.rows(), 1);
229 EXPECT_EQ(derivative(0), 0);
239 const Vector derivative = DifferentiatePolynomial(polynomial); local
240 EXPECT_EQ(derivative.rows(), 2);
241 EXPECT_EQ(derivative(0), 2.0);
242 EXPECT_EQ(derivative(1), 2.0);
polynomial.cc 257 // Degree zero polynomials are constants, and their derivative does
264 Vector derivative(degree);
266 derivative(i) = (degree - i) * polynomial(i);
269 return derivative;
302 const Vector derivative = DifferentiatePolynomial(polynomial); local
304 if (!FindPolynomialRoots(derivative, &roots_real, NULL)) {
  /packages/apps/Camera2/src/com/android/camera/ui/motion/
UnitBezier.java 85 float derivative = fn.derivative(input); local
86 if (Math.abs(derivative) < EPSILON) {
89 input = input - value / derivative;
125 float derivative(float x); method in interface:UnitBezier.DerivableFloatFn
153 public float derivative(float x) { method in class:UnitBezier.CubicBezierFn
  /packages/apps/Messaging/src/com/android/messaging/util/
CubicBezierInterpolator.java 91 double derivative = (getX(t + epsilon) - value) / epsilon; local
94 } else if (Math.abs(derivative) < epsilon) {
102 t -= (value - x) / derivative;
107 // derivative was close to 0, use an interval bisection instead.
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/estimators/
nada.cc 105 float derivative = 0.0f; local
107 derivative = (congestion_signal_ms - last_congestion_signal_ms_) /
125 derivative, RecentKbps(), corrected_send_time_ms);
205 fb.derivative() < kDerivativeUpperBound) {
216 fb.derivative() < kDerivativeUpperBound &&
272 float x_hat = fb.congestion_signal() + kEta * kTauOMs * fb.derivative();
nada_unittest.cc 136 float derivative = 0.0f; local
139 derivative, receiving_rate, send_time_ms);
146 float derivative = 1.0f; local
149 derivative, receiving_rate, send_time_ms);
157 float derivative = 10000.0f; local
160 derivative, receiving_rate, send_time_ms);
326 EXPECT_EQ(nada_feedback->derivative(), 0.0f);
350 EXPECT_EQ(nada_feedback->derivative(), 0.0f);
392 EXPECT_NEAR(nada_feedback->derivative(),
396 EXPECT_NEAR(nada_feedback->derivative(),
    [all...]
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
packet.h 155 float derivative,
162 derivative_(derivative),
171 float derivative() const { return derivative_; } function in class:webrtc::testing::bwe::NadaFeedback

Completed in 298 milliseconds