HomeSort by relevance Sort by last modified time
    Searched refs:xval (Results 1 - 25 of 33) sorted by null

1 2

  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/interpolation/
LoessInterpolator.java 169 * @param xval the arguments for the interpolation points
180 final double[] xval, final double[] yval) throws MathException {
181 return new SplineInterpolator().interpolate(xval, smooth(xval, yval));
187 * @param xval the arguments for the interpolation points
199 public final double[] smooth(final double[] xval, final double[] yval, final double[] weights)
201 if (xval.length != yval.length) {
203 xval.length, yval.length);
206 final int n = xval.length;
212 checkAllFiniteReal(xval, LocalizedFormats.NON_REAL_FINITE_ABSCISSA)
    [all...]
SmoothingPolynomialBicubicSplineInterpolator.java 74 public BicubicSplineInterpolatingFunction interpolate(final double[] xval,
78 if (xval.length == 0 || yval.length == 0 || fval.length == 0) {
81 if (xval.length != fval.length) {
82 throw new DimensionMismatchException(xval.length, fval.length);
85 final int xLen = xval.length;
94 MathUtils.checkOrder(xval);
103 xFitter.addObservedPoint(1, xval[i], fval[i][j]);
109 // For every knot (xval[i], yval[j]) of the grid, calculate corrected
115 fval_1[i][j] = f.value(xval[i]);
131 // For every knot (xval[i], yval[j]) of the grid, calculate correcte
    [all...]
SmoothingBicubicSplineInterpolator.java 50 public BivariateRealFunction interpolate(final double[] xval,
54 if (xval.length == 0 || yval.length == 0 || zval.length == 0) {
57 if (xval.length != zval.length) {
58 throw new DimensionMismatchException(xval.length, zval.length);
61 MathUtils.checkOrder(xval, OrderDirection.INCREASING, true);
64 final int xLen = xval.length;
68 // 0 <= i < xval.length
70 // zX[j][i] = f(xval[i], yval[j])
88 ySplineX[j] = spInterpolator.interpolate(xval, zX[j]);
91 // For every knot (xval[i], yval[j]) of the grid, calculate correcte
    [all...]
BicubicSplineInterpolator.java 37 public BicubicSplineInterpolatingFunction interpolate(final double[] xval,
41 if (xval.length == 0 || yval.length == 0 || fval.length == 0) {
44 if (xval.length != fval.length) {
45 throw new DimensionMismatchException(xval.length, fval.length);
48 MathUtils.checkOrder(xval);
51 final int xLen = xval.length;
55 // 0 <= i < xval.length
57 // fX[j][i] = f(xval[i], yval[j])
75 ySplineX[j] = spInterpolator.interpolate(xval, fX[j]);
90 dFdX[i][j] = f.value(xval[i])
    [all...]
BivariateRealGridInterpolator.java 32 * @param xval All the x-coordinates of the interpolation points, sorted
37 * {@code fval[i][j] = f(xval[i], yval[j])}.
42 BivariateRealFunction interpolate(double[] xval, double[] yval, double[][] fval)
MultivariateRealInterpolator.java 33 * @param xval the arguments for the interpolation points.
34 * {@code xval[i][0]} is the first component of interpolation point
35 * {@code i}, {@code xval[i][1]} is the second component, and so on
36 * until {@code xval[i][d-1]}, the last component of that interpolation
42 * @throws IllegalArgumentException if there are no data (xval null or zero length)
44 MultivariateRealFunction interpolate(double[][] xval, double[] yval)
TrivariateRealGridInterpolator.java 33 * @param xval All the x-coordinates of the interpolation points, sorted
40 * {@code fval[i][j][k] = f(xval[i], yval[j], zval[k])}.
47 TrivariateRealFunction interpolate(double[] xval, double[] yval, double[] zval, double[][][] fval)
UnivariateRealInterpolator.java 31 * @param xval the arguments for the interpolation points
37 UnivariateRealFunction interpolate(double xval[], double yval[])
TricubicSplineInterpolator.java 35 public TricubicSplineInterpolatingFunction interpolate(final double[] xval,
40 if (xval.length == 0 || yval.length == 0 || zval.length == 0 || fval.length == 0) {
43 if (xval.length != fval.length) {
44 throw new DimensionMismatchException(xval.length, fval.length);
47 MathUtils.checkOrder(xval);
51 final int xLen = xval.length;
56 // fvalXY[k][i][j] = f(xval[i], yval[j], zval[k])
57 // fvalZX[j][k][i] = f(xval[i], yval[j], zval[k])
91 ySplineZX[j] = bsi.interpolate(zval, xval, fvalZX[j]);
98 zSplineXY[k] = bsi.interpolate(xval, yval, fvalXY[k])
    [all...]
MicrosphereInterpolatingFunction.java 130 * @param xval the arguments for the interpolation points.
131 * {@code xval[i][0]} is the first component of interpolation point
132 * {@code i}, {@code xval[i][1]} is the second component, and so on
133 * until {@code xval[i][d-1]}, the last component of that interpolation
142 * {@code xval} (equal to {@code n}, the number of interpolation points)
143 * do not match, or the the arrays {@code xval[0]} ... {@code xval[n]},
145 * @throws NoDataException if there are no data (xval null or zero length)
147 public MicrosphereInterpolatingFunction(double[][] xval,
153 if (xval.length == 0 || xval[0] == null)
    [all...]
MicrosphereInterpolator.java 83 public MultivariateRealFunction interpolate(final double[][] xval,
87 = new UnitSphereRandomVectorGenerator(xval[0].length);
88 return new MicrosphereInterpolatingFunction(xval, yval,
BicubicSplineInterpolatingFunction.java 60 private final double[] xval; field in class:BicubicSplineInterpolatingFunction
121 xval = x.clone();
160 final int i = searchIndex(x, xval);
162 throw new OutOfRangeException(x, xval[0], xval[xval.length - 1]);
169 final double xN = (x - xval[i]) / (xval[i + 1] - xval[i]);
237 final int i = searchIndex(x, xval);
    [all...]
TricubicSplineInterpolatingFunction.java 112 private final double[] xval; field in class:TricubicSplineInterpolatingFunction
192 xval = x.clone();
310 final int i = searchIndex(x, xval);
312 throw new OutOfRangeException(x, xval[0], xval[xval.length - 1]);
323 final double xN = (x - xval[i]) / (xval[i + 1] - xval[i]);
  /external/fio/lib/
rand.h 77 uint64_t xval; local
79 xval = ((state->s1 << 1) ^ state->s1) >> 53;
80 state->s1 = ((state->s1 & 18446744073709551614ULL) << 10) ^ xval;
82 xval = ((state->s2 << 24) ^ state->s2) >> 50;
83 state->s2 = ((state->s2 & 18446744073709551104ULL) << 5) ^ xval;
85 xval = ((state->s3 << 3) ^ state->s3) >> 23;
86 state->s3 = ((state->s3 & 18446744073709547520ULL) << 29) ^ xval;
88 xval = ((state->s4 << 5) ^ state->s4) >> 24;
89 state->s4 = ((state->s4 & 18446744073709420544ULL) << 23) ^ xval;
91 xval = ((state->s5 << 3) ^ state->s5) >> 33
    [all...]
  /bionic/tests/
stdatomic_test.cpp 214 uint_least32_t xval = 0, yval = 0, zval = 0; local
220 xval = atomic_load_explicit(&a->x, memory_order_relaxed);
226 << zval << " < " << yval << ", " << xval << "\n"; local
229 if (xval < yval) {
232 << xval << " < " << yval << ", " << zval << "\n";
  /external/ltp/testcases/kernel/controllers/cgroup_xattr/
cgroup_xattr.c 370 char xval[size]; local
371 if (getxattr(file, tkeys[i].name, xval, size) == -1) {
377 strncmp(val.buf, xval, val.size) != 0;
383 tst_resm_hexd(TINFO, xval, size,
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
mpint.go 306 func bconv(xval *Mpint, flag FmtFlag) string {
308 return fmt.Sprintf("%#x", &xval.Val)
310 return xval.Val.String()
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
mpint.go 306 func bconv(xval *Mpint, flag FmtFlag) string {
308 return fmt.Sprintf("%#x", &xval.Val)
310 return xval.Val.String()
  /external/fio/
graph.c 725 double xval = getx(x); local
726 double minx = xval - (g->xtick_one_val * TOOLTIP_DELTA);
727 double maxx = xval + (g->xtick_one_val * TOOLTIP_DELTA);
  /prebuilts/go/darwin-x86/src/go/types/
expr.go 630 var xval constant.Value
632 xval = constant.ToInt(x.val)
635 if isInteger(x.typ) || untypedx && xval != nil && xval.Kind() == constant.Int {
687 // x is a constant so xval != nil and it must be of Int kind.
688 x.val = constant.Shift(xval, op, uint(s))
834 xval := x.val
841 x.val = constant.BinaryOp(xval, op, yval)
    [all...]
  /prebuilts/go/linux-x86/src/go/types/
expr.go 630 var xval constant.Value
632 xval = constant.ToInt(x.val)
635 if isInteger(x.typ) || untypedx && xval != nil && xval.Kind() == constant.Int {
687 // x is a constant so xval != nil and it must be of Int kind.
688 x.val = constant.Shift(xval, op, uint(s))
834 xval := x.val
841 x.val = constant.BinaryOp(xval, op, yval)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
TransformerImpl.java     [all...]
  /external/libpcap/
optimize.c 1186 bpf_int32 aval, xval; local
1229 xval = b->val[X_ATOM];
1258 xval != 0 && b->val[X_ATOM] == xval) ||
    [all...]
  /system/core/libpixelflinger/
trap.cpp 194 const int xval = rr - (x_sample * x_sample); local
197 if (xval - (y_sample * y_sample) > 0)
    [all...]
  /prebuilts/devtools/tools/lib/
org-eclipse-jface-3.6.2.jar 

Completed in 1951 milliseconds

1 2