Skip to content
Snippets Groups Projects
  • Ben Cumming's avatar
    Move miniapps path to 'example/' (#423) · f94f0eab
    Ben Cumming authored and Sam Yates's avatar Sam Yates committed
    * Rename `miniapps` subdirectory to `example`.
    * Have all example executables be built under `example` in the build directory.
    * Update Travis CI to run miniapp from new path.
    f94f0eab
plot.py 358 B
from matplotlib import pyplot
import numpy as np

ncol = 3

raw = np.fromfile("cell0.txt", sep=" ")
n = raw.size/ncol
data = raw.reshape(n,ncol)

t    = data[:, 0]
soma = data[:, 1]
dend = data[:, 2]

pyplot.plot(t, soma, 'k')
pyplot.plot(t, dend, 'r')

pyplot.xlabel('time (ms)')
pyplot.ylabel('mV')
pyplot.xlim([t[0], t[n-1]])
pyplot.grid()
pyplot.show()