madlib._maneuver.ContinuousManeuver

class madlib._maneuver.ContinuousManeuver(f: Callable, time_range: Tuple[float, float])[source]

ContinuousManeuver class holds a continuous maneuver definition, which includes the acceleration function defining the maneuver, and the time range over which the maneuver occurs.

__init__(f: Callable, time_range: Tuple[float, float])[source]

Create a ContinuousManeuver object

Parameters:
  • f (Callable) – Function which evaluates the acceleration at a given time

  • time_range (Tuple[float, float]) – Time range within which this maneuver is valid

Methods

__init__(f, time_range)

Create a ContinuousManeuver object