当前位置: 首页>>代码示例>>Python>>正文


Python Context.step_simulation方法代码示例

本文整理汇总了Python中context.Context.step_simulation方法的典型用法代码示例。如果您正苦于以下问题:Python Context.step_simulation方法的具体用法?Python Context.step_simulation怎么用?Python Context.step_simulation使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在context.Context的用法示例。


在下文中一共展示了Context.step_simulation方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: range

# 需要导入模块: from context import Context [as 别名]
# 或者: from context.Context import step_simulation [as 别名]
# connect BCM thresh to GCM sum
# TODO: this is maybe where relative names would be nice...
s.connect(['$name == "thresh"'], 
          ['$name == "sum"'])

# Re-initialize entire circuit
s.init_simulation()

#s.focus.show_cg()


# step the network a few times to 'prime' things
prime_steps = 50
for i in range(prime_steps):
    print 'priming:', i+1, '/', prime_steps
    s.step_simulation()




# prepare plotting stuff

s.set_focus('root')
s.set_focus('$name == "stimulus"')
stim = s.focus

s.set_focus('root')



bcms = s.focus.filter_nodes(C(['$name == "BCM"']))
开发者ID:abjose,项目名称:surfsim2,代码行数:33,代码来源:tests.py


注:本文中的context.Context.step_simulation方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。