MetaCell / geppetto-hnn

Geppetto extension for HNN
0 stars 0 forks source link

Provide code/snippet to plot a dipole passing experimental datas #86

Closed tarelli closed 5 years ago

salvadord commented 5 years ago

done - https://github.com/Neurosim-lab/netpyne/commit/3b54ea1dbd34c03a3d5a8a201b7cab12e45c1f07

example to test:

from netpyne import sim

expData = {}
expData['x'] = range(5)
expData['y'] = [x * 2 for x in range(5)]
sim.analysis.iplotDipole(expData)
tarelli commented 5 years ago

@afonsobspinto there you go