Python+MPI version now available

Discussions about LFPsim, a tool for simulating local field potentials

Moderator: tom_morse

Post Reply
JustasB
Posts: 28
Joined: Tue Dec 08, 2015 8:17 pm
Location: Tempe, AZ, USA
Contact:

Python+MPI version now available

Post by JustasB »

For those interested in LFPsim, there is a pip-installable, MPI-compatible, pure-Python version of LFPsim.

Take a look at LFPsimpy

Example usage:

Code: Select all

build_your_model()

from LFPsimpy import LfpElectrode
le = LfpElectrode(x,y,z)

h.run()

plt.plot(le.times, le.values)
plt.show()
Post Reply