/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
|
/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
|
/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));
|
/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
|
/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)) {
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/interpolation/ |
BicubicSplineInterpolator.java | 88 final UnivariateRealFunction f = ySplineX[j].derivative(); 97 final UnivariateRealFunction f = xSplineY[i].derivative();
|
SmoothingBicubicSplineInterpolator.java | 121 final UnivariateRealFunction f = ySplineX[j].derivative(); 130 final UnivariateRealFunction f = xSplineY[i].derivative();
|
/external/ant-glob/ |
NOTICE | 41 * "Derivative Works" shall mean any work, whether in Source or Object 45 * of this License, Derivative Works shall not include works that remain 47 * the Work and Derivative Works thereof. 51 * to that Work or Derivative Works thereof, that is intentionally 70 * copyright license to reproduce, prepare Derivative Works of, 72 * Work and such Derivative Works in Source or Object form. 91 * Work or Derivative Works thereof in any medium, with or without 96 * Derivative Works a copy of this License; and 101 * (c) You must retain, in the Source form of any Derivative Works 105 * the Derivative Works; an [all...] |
/external/libgdx/gdx/src/com/badlogic/gdx/math/ |
CatmullRomSpline.java | 57 /** Calculates the derivative of the catmullrom spline for the given position (t).
64 public static <T extends Vector<T>> T derivative (final T out, final float t, final T[] points, final boolean continuous,
method in class:CatmullRomSpline 70 return derivative(out, i, u, points, continuous, tmp);
73 /** Calculates the derivative of the catmullrom spline for the given span (i) at the given position (u).
81 public static <T extends Vector<T>> T derivative (final T out, final int i, final float u, final T[] points,
method in class:CatmullRomSpline 143 /** @return The derivative of the spline at position u of the specified span */
145 return derivative(out, continuous ? span : (span + 1), u, controlPoints, continuous, tmp);
|
BSpline.java | 41 /** Calculates the cubic b-spline derivative for the given position (t). 78 /** Calculates the cubic b-spline derivative for the given span (i) at the given position (u). 116 /** Calculates the n-degree b-spline derivative for the given position (t). 124 public static <T extends Vector<T>> T derivative (final T out, final float t, final T[] points, final int degree, method in class:BSpline 130 return derivative(out, i, u, points, degree, continuous, tmp); 151 /** Calculates the n-degree b-spline derivative for the given span (i) at the given position (u). 160 public static <T extends Vector<T>> T derivative (final T out, final int i, final float u, final T[] points, final int degree, method in class:BSpline 228 /** @return The derivative of the spline at position u of the specified span */ 230 return derivative(out, continuous ? span : (span + (int)(degree * 0.5f)), u, controlPoints, degree, continuous, tmp);
|
/prebuilts/tools/common/m2/repository/com/android/tools/external/ant-glob/1.0/ |
NOTICE | 41 * "Derivative Works" shall mean any work, whether in Source or Object 45 * of this License, Derivative Works shall not include works that remain 47 * the Work and Derivative Works thereof. 51 * to that Work or Derivative Works thereof, that is intentionally 70 * copyright license to reproduce, prepare Derivative Works of, 72 * Work and such Derivative Works in Source or Object form. 91 * Work or Derivative Works thereof in any medium, with or without 96 * Derivative Works a copy of this License; and 101 * (c) You must retain, in the Source form of any Derivative Works 105 * the Derivative Works; an [all...] |
/prebuilts/tools/common/m2/repository/com/intellij/annotations/12.0/ |
NOTICE | 41 * "Derivative Works" shall mean any work, whether in Source or Object 45 * of this License, Derivative Works shall not include works that remain 47 * the Work and Derivative Works thereof. 51 * to that Work or Derivative Works thereof, that is intentionally 70 * copyright license to reproduce, prepare Derivative Works of, 72 * Work and such Derivative Works in Source or Object form. 91 * Work or Derivative Works thereof in any medium, with or without 96 * Derivative Works a copy of this License; and 101 * (c) You must retain, in the Source form of any Derivative Works 105 * the Derivative Works; an [all...] |
/prebuilts/tools/common/offline-m2/com/intellij/annotations/12.0/ |
NOTICE | 41 * "Derivative Works" shall mean any work, whether in Source or Object 45 * of this License, Derivative Works shall not include works that remain 47 * the Work and Derivative Works thereof. 51 * to that Work or Derivative Works thereof, that is intentionally 70 * copyright license to reproduce, prepare Derivative Works of, 72 * Work and such Derivative Works in Source or Object form. 91 * Work or Derivative Works thereof in any medium, with or without 96 * Derivative Works a copy of this License; and 101 * (c) You must retain, in the Source form of any Derivative Works 105 * the Derivative Works; an [all...] |
/external/ImageMagick/MagickCore/ |
segment.c | 51 % build an interval tree of zero crossings in the second derivative 863 % DerivativeHistogram() determines the derivative of the histogram using 869 % double *derivative) 876 % o derivative: This array of doubles is initialized by 877 % DerivativeHistogram to the derivative of the histogram using central 882 double *derivative) 892 derivative[0]=(-1.5*histogram[0]+2.0*histogram[1]-0.5*histogram[2]); 893 derivative[n]=(0.5*histogram[n-2]-2.0*histogram[n-1]+1.5*histogram[n]); 895 Compute derivative using central differencing. 898 derivative[i]=(histogram[i+1]-histogram[i-1])/2.0 1504 *derivative, local [all...] |
/external/ImageMagick/www/api/ |
segment.php | 85 <p>the smoothing threshold eliminates noise in the second derivative of the histogram. As the value is increased, you can expect a smoother second derivative.</p>
|
/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
|