Home | History | Annotate | Download | only in interpolation

Lines Matching defs:pX

400         final double[] pX = {1, x, x2, x3};
406 return apply(pX, pY, a);
412 * @param pX Powers of the x-coordinate.
417 private double apply(double[] pX, double[] pY, double[][] coeff) {
421 result += coeff[i][j] * pX[i] * pY[j];
503 final double[] pX = {0, 1, x, x2};
509 return apply(pX, pY, aX);
516 final double[] pX = {1, x, x2, x3};
521 return apply(pX, pY, aY);
526 final double[] pX = {0, 0, 1, x};
532 return apply(pX, pY, aXX);
539 final double[] pX = {1, x, x2, x3};
543 return apply(pX, pY, aYY);
549 final double[] pX = {0, 1, x, x2};
554 return apply(pX, pY, aXY);