本文整理匯總了Python中sparkle.stim.stimulus_model.StimulusModel.setLoopCount方法的典型用法代碼示例。如果您正苦於以下問題:Python StimulusModel.setLoopCount方法的具體用法?Python StimulusModel.setLoopCount怎麽用?Python StimulusModel.setLoopCount使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類sparkle.stim.stimulus_model.StimulusModel
的用法示例。
在下文中一共展示了StimulusModel.setLoopCount方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: StimulusModel
# 需要導入模塊: from sparkle.stim.stimulus_model import StimulusModel [as 別名]
# 或者: from sparkle.stim.stimulus_model.StimulusModel import setLoopCount [as 別名]
silence0.setDuration(0.025)
stim0 = StimulusModel()
stim1 = StimulusModel()
stim0.insertComponent(tone2)
stim1.insertComponent(tone1)
# stim.insertComponent(tone0)
# stim.insertComponent(tone4, (1,0))
stim1.insertComponent(tone5, 1,0)
stim0.insertComponent(vocal0, 1,0)
# stim.insertComponent(tone3, (2,0))
# stim.insertComponent(silence0, (2,0))
stim0.setLoopCount(3)
stim0.setStimType('Custom')
stim1.setStimType('Custom')
tableView = ProtocolView()
tableView.show()
tableView.resize(400,400)
model = QProtocolTabelModel(ProtocolTabelModel())
model.insertTest(stim0,0)
model.insertTest(stim1,0)
tableView.setModel(model)
sys.exit(app.exec_())