Home
last modified time | relevance | path

Searched refs:LEN_MOVING_AVERAGE (Results 1 – 1 of 1) sorted by relevance

/external/autotest/client/site_tests/firmware_TouchMTB/
Dmtb.py526 LEN_MOVING_AVERAGE = 2 variable in Mtb
946 if index < self.LEN_MOVING_AVERAGE + 1:
948 moving_sum = sum(numbers[index - self.LEN_MOVING_AVERAGE : index])
949 moving_average = float(moving_sum) / self.LEN_MOVING_AVERAGE
980 if len(displacements) < self.LEN_MOVING_AVERAGE + 1: