HomeSort by relevance Sort by last modified time
    Searched refs:laserT (Results 1 - 2 of 2) sorted by null

  /external/walt/android/WALT/app/src/main/java/org/chromium/latency/walt/
Utils.java 130 private static double getShiftError(double[] laserT, double[] touchT, double[] touchY, double shift) {
131 double[] T = new double[laserT.length];
133 T[j] = laserT[j] + shift;
147 public static double findBestShift(double[] laserT, double[] touchT, double[] touchY) {
154 stddevs[i] = getShiftError(laserT, touchT, touchY, bestShift + shiftStep * i - shiftStep * steps / 2);
DragLatencyFragment.java 396 final double[] laserT = new double[lt.length];
401 laserT[i] = lt[i] + averageBestShift;
403 final double[] laserY = Utils.interp(laserT, ft, fy);
405 laserEntries.add(new Entry((float) laserT[i], (float) laserY[i]));

Completed in 96 milliseconds