getAvgAcceleration method

MovementValue getAvgAcceleration()

Implementation

MovementValue getAvgAcceleration() {
  if(_vectorList.isEmpty){
    throw Exception("No List to get data from: Recording not started");
  }
  return MovementTypeUtils.filterAverageValueFromList(_vectorList);
}