コード例 #1
0
ファイル: events.py プロジェクト: moshthepitt/mugen
 def segment_durations(self):
     """
     Returns
     -------
     durations of segments between events
     """
     return loc_util.intervals_from_locations(self.locations + [self.end])
コード例 #2
0
ファイル: events.py プロジェクト: moshthepitt/mugen
 def intervals(self) -> List[float]:
     return loc_util.intervals_from_locations(self.locations)
コード例 #3
0
def test_intervals_from_locations(locations, expected_intervals):
    assert loc_util.intervals_from_locations(locations) == expected_intervals