HomeSort by relevance Sort by last modified time
    Searched defs:interpolate (Results 1 - 25 of 165) sorted by null

1 2 3 4 5 6 7

  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/interpolation/
BivariateRealGridInterpolator.java 42 BivariateRealFunction interpolate(double[] xval, double[] yval, double[][] fval) method in interface:BivariateRealGridInterpolator
MultivariateRealInterpolator.java 44 MultivariateRealFunction interpolate(double[][] xval, double[] yval) method in interface:MultivariateRealInterpolator
NevilleInterpolator.java 50 public PolynomialFunctionLagrangeForm interpolate(double x[], double y[]) method in class:NevilleInterpolator
TrivariateRealGridInterpolator.java 47 TrivariateRealFunction interpolate(double[] xval, double[] yval, double[] zval, double[][][] fval) method in interface:TrivariateRealGridInterpolator
UnivariateRealInterpolator.java 37 UnivariateRealFunction interpolate(double xval[], double yval[]) method in interface:UnivariateRealInterpolator
LinearInterpolator.java 44 public PolynomialSplineFunction interpolate(double x[], double y[]) { method in class:LinearInterpolator
MicrosphereInterpolator.java 83 public MultivariateRealFunction interpolate(final double[][] xval, method in class:MicrosphereInterpolator
DividedDifferenceInterpolator.java 52 public PolynomialFunctionNewtonForm interpolate(double x[], double y[]) throws method in class:DividedDifferenceInterpolator
SplineInterpolator.java 29 * The {@link #interpolate(double[], double[])} method returns a {@link PolynomialSplineFunction}
67 public PolynomialSplineFunction interpolate(double x[], double y[]) { method in class:SplineInterpolator
BicubicSplineInterpolator.java 37 public BicubicSplineInterpolatingFunction interpolate(final double[] xval, method in class:BicubicSplineInterpolator
75 ySplineX[j] = spInterpolator.interpolate(xval, fX[j]);
82 xSplineY[i] = spInterpolator.interpolate(yval, fval[i]);
SmoothingPolynomialBicubicSplineInterpolator.java 74 public BicubicSplineInterpolatingFunction interpolate(final double[] xval, method in class:SmoothingPolynomialBicubicSplineInterpolator
141 return super.interpolate(xval, yval, fval_2);
SmoothingBicubicSplineInterpolator.java 50 public BivariateRealFunction interpolate(final double[] xval, method in class:SmoothingBicubicSplineInterpolator
88 ySplineX[j] = spInterpolator.interpolate(xval, zX[j]);
105 xSplineY[i] = spInterpolator.interpolate(yval, zY_1[i]);
TricubicSplineInterpolator.java 35 public TricubicSplineInterpolatingFunction interpolate(final double[] xval, method in class:TricubicSplineInterpolator
84 xSplineYZ[i] = bsi.interpolate(yval, zval, fval[i]);
91 ySplineZX[j] = bsi.interpolate(zval, xval, fvalZX[j]);
98 zSplineXY[k] = bsi.interpolate(xval, yval, fvalXY[k]);
  /external/libmpeg2/common/arm/
ideint_spatial_filter_a9.s 190 b interpolate
199 interpolate: label
  /external/libmpeg2/common/armv8/
ideint_spatial_filter_av8.s 191 b interpolate
201 interpolate: label
  /external/adhd/scripts/volume_tuning/
volume.js 215 // (3) If both exist, interpolate value for current point
240 // Interpolate value for point x
241 var interpolate = function(x) { function in function:generatePoints
260 result.push(quantize(interpolate(x)));
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
NotificationUtils.java 46 public static float interpolate(float start, float end, float amount) { method in class:NotificationUtils
52 (int) interpolate(Color.alpha(startColor), Color.alpha(endColor), amount),
53 (int) interpolate(Color.red(startColor), Color.red(endColor), amount),
54 (int) interpolate(Color.green(startColor), Color.green(endColor), amount),
55 (int) interpolate(Color.blue(startColor), Color.blue(endColor), amount));
  /external/replicaisland/src/com/replica/replicaisland/
Interpolator.java 60 public float interpolate(float secondsDelta) { method in class:Interpolator
  /frameworks/base/core/java/android/util/
Spline.java 32 public abstract float interpolate(float x); method in class:Spline
183 public float interpolate(float x) { method in class:Spline.MonotoneCubicSpline
252 public float interpolate(float x) { method in class:Spline.LinearSpline
  /frameworks/base/libs/hwui/
Interpolator.cpp 32 float AccelerateDecelerateInterpolator::interpolate(float input) { function in class:android::uirenderer::AccelerateDecelerateInterpolator
36 float AccelerateInterpolator::interpolate(float input) { function in class:android::uirenderer::AccelerateInterpolator
44 float AnticipateInterpolator::interpolate(float t) { function in class:android::uirenderer::AnticipateInterpolator
56 float AnticipateOvershootInterpolator::interpolate(float t) { function in class:android::uirenderer::AnticipateOvershootInterpolator
67 float BounceInterpolator::interpolate(float t) { function in class:android::uirenderer::BounceInterpolator
79 float CycleInterpolator::interpolate(float input) { function in class:android::uirenderer::CycleInterpolator
83 float DecelerateInterpolator::interpolate(float input) { function in class:android::uirenderer::DecelerateInterpolator
93 float OvershootInterpolator::interpolate(float t) { function in class:android::uirenderer::OvershootInterpolator
98 float PathInterpolator::interpolate(float t) { function in class:android::uirenderer::PathInterpolator
104 // Do a binary search for the correct x to interpolate between
134 float LUTInterpolator::interpolate(float input) { function in class:android::uirenderer::LUTInterpolator
    [all...]
  /external/ImageMagick/MagickWand/
identify.c 140 "-interpolate method pixel color interpolation method",
670 if (LocaleCompare("interpolate",option+1) == 0)
673 interpolate;
680 interpolate=ParseCommandOption(MagickInterpolateOptions,MagickFalse,
682 if (interpolate < 0)
671 interpolate; local
    [all...]
stream.c 118 "-interpolate method pixel color interpolation method",
501 if (LocaleCompare("interpolate",option+1) == 0)
504 interpolate;
511 interpolate=ParseCommandOption(MagickInterpolateOptions,MagickFalse,
513 if (interpolate < 0)
502 interpolate; local
  /external/tensorflow/tensorflow/contrib/integrate/python/ops/
odes.py 364 def interpolate(solution, history, rk_state, i): function in function:_dopri5
365 """Interpolate through the next time point, integrating as necessary."""
366 with ops.name_scope('interpolate'):
391 interpolate, (solution, history, rk_state, 1),
  /frameworks/av/media/libaudioprocessing/
AudioResamplerFirProcess.h 114 TC interpolate(TC coef_0, TC coef_1, TINTERP lerp) function in namespace:android
121 int16_t interpolate<int16_t, uint32_t>(int16_t coef_0, int16_t coef_1, uint32_t lerp) function in namespace:android
128 int32_t interpolate<int32_t, uint32_t>(int32_t coef_0, int32_t coef_1, uint32_t lerp) function in namespace:android
138 return interpolate(coef_0, coef_1, lerp);
144 return interpolate(coef_0, coef_1, lerp);
  /frameworks/base/core/tests/coretests/src/android/view/
PinchZoomAction.java 117 final float[][] stepsFirstFinger = interpolate(firstFingerStartCoords,
119 final float[][] stepsSecondFinger = interpolate(secondFingerStartCoords,
181 private static float[][] interpolate(float[] start, float[] end) { method in class:PinchZoomAction

Completed in 207 milliseconds

1 2 3 4 5 6 7