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

  /external/autotest/client/site_tests/firmware_TouchMTB/tests/
mtb_unittest.py 37 def __init__(self, list_x, list_y):
39 self.list_y = list_y
42 """Return list_x, list_y directly."""
43 return (self.list_x, self.list_y)
63 def _call_get_reversed_motions(self, list_x, list_y, expected_x,
65 mtb = FakeMtb(list_x, list_y)
72 list_y = (1, 2 ,6, 10, 22)
73 self._call_get_reversed_motions(list_x, list_y, 0, 0, GV.TLBR)
77 list_y = (1, 2 ,6, 30, 22
    [all...]
validators_unittest.py 185 list_y = [20, 40, 60, 80, 100, 120, 140, 160]
186 list_t = [i * 0.1 for i in range(len(list_y))]
188 list_t, list_y)
206 list_y = [1, 20, 40, 60, 80, 100, 120, 140, 160, 188, 190]
207 list_t = range(len(list_y))
219 list_y)
254 list_y = [52.21, 53.12, 54.48, 55.84, 57.20, 58.57, 59.93, 61.29,
259 list_t, list_y)
    [all...]
  /external/autotest/client/site_tests/firmware_TouchMTB/
validators.py 265 """Get list_x, list_y, and list_t for the specified finger.
271 list_y = [p.y for p in points]
273 return (list_x, list_y, list_t)
489 (list_x, list_y) = self.packets.get_x_y(self.finger)
493 ave_distance = self._simple_linear_regression(list_y, list_x)
496 ave_distance = self._simple_linear_regression(list_x, list_y)
525 def _calc_residuals(self, line, list_t, list_y):
526 """Calculate the residuals of the points in list_t, list_y against
529 @param line: the regression line of list_t and list_y
531 @param list_y: a list of x/y coordinate
    [all...]
mtb.py 611 # Should not write "list_x = list_y = []" below.
614 list_y = []
648 list_y.append(prev_y)
649 return (list_x, list_y)
775 list_y = self._init_dict(target_slots, [])
810 list_y[s].append(y[s])
812 return (list_x, list_y)
    [all...]
  /external/tensorflow/tensorflow/contrib/recurrent/python/ops/
recurrent.py 207 list_y = nest.flatten(struct_y)
209 for x, y in zip(list_x, list_y):

Completed in 1487 milliseconds