function plotSpikes(inp, tau_inh = 5, inc_inh = 0.2, runtime=0.8) {
const TIME_STEP = 1e-3;
const NUM_STEPS = runtime / TIME_STEP;
const J = () => inp;
const neuron = new ALIF(0.02, 0, 0.2);
neuron.tau_inh = tau_inh;
neuron.inc_inh = inc_inh;
neuron.tau_ref = 1e-2;
const v_history = [ {t: 0, v: neuron.v} ];
let numSpikes = 0;
for(let i = 0; i < NUM_STEPS; i++) {
const j = J((i+1)*TIME_STEP);
neuron.step(j, TIME_STEP);
const out = neuron.output * TIME_STEP;
if(out > 0) {
numSpikes++;
}
v_history.push({t: (i+1)*TIME_STEP, v: neuron.v, vth: neuron.v_th + neuron.inh, j, out });
}
const plot = Plot.plot({
y: {
grid: true,
label: 'j'
},
marks: [
Plot.line(v_history, {x: "t", y: "vth", stroke: "blue"}),
Plot.line(v_history, {x: "t", y: "v", stroke: "red"}),
Plot.line(v_history, {x: "t", y: "out", stroke: "black", strokeWidth: 4}),
]
});
return html`<div>${plot.outerHTML}<div><strong>An input of ${inp} produces ${numSpikes} spike${numSpikes===1 ?'' : 's'} in ${runtime} seconds</strong> (${numSpikes / runtime} Hz)</div></div>`;
}