Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当为 NEURON 使用 python 接口时,当我g=h.Graph()在 python 中创建一个对象并g.addvar(...)绘制一个变量时,单击 Init & Run 会产生一个空图:
g=h.Graph()
g.addvar(...)
创建 Graph() 对象后,还将其添加到全局 graphList。然后它将在 run() 期间更新:
g = h.Graph() g.addvar(...) h.graphList[0].append(g) h.run()