本文整理汇总了Python中neo.core.Segment.epocharrays方法的典型用法代码示例。如果您正苦于以下问题:Python Segment.epocharrays方法的具体用法?Python Segment.epocharrays怎么用?Python Segment.epocharrays使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类neo.core.Segment
的用法示例。
在下文中一共展示了Segment.epocharrays方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test__children
# 需要导入模块: from neo.core import Segment [as 别名]
# 或者: from neo.core.Segment import epocharrays [as 别名]
def test__children(self):
params = {'test2': 'y1', 'test3': True}
epca = EpochArray([1.1, 1.5, 1.7]*pq.ms, durations=[20, 40, 60]*pq.ns,
labels=np.array(['test epoch 1',
'test epoch 2',
'test epoch 3'], dtype='S'),
name='test', description='tester',
file_origin='test.file',
test1=1, **params)
epca.annotate(test1=1.1, test0=[1, 2])
assert_neo_object_is_compliant(epca)
segment = Segment(name='seg1')
segment.epocharrays = [epca]
segment.create_many_to_one_relationship()
self.assertEqual(epca._single_parent_objects, ('Segment',))
self.assertEqual(epca._multi_parent_objects, ())
self.assertEqual(epca._single_parent_containers, ('segment',))
self.assertEqual(epca._multi_parent_containers, ())
self.assertEqual(epca._parent_objects, ('Segment',))
self.assertEqual(epca._parent_containers, ('segment',))
self.assertEqual(len(epca.parents), 1)
self.assertEqual(epca.parents[0].name, 'seg1')
assert_neo_object_is_compliant(epca)