{
const TIME_STEP = 1e-3;
const NUM_STEPS = 15 / TIME_STEP;
const I = mul(step_func(4, 5), 1.2);
const neuron = new FirstOrderLIF(tau_rc2, 0, tau_ref, v_th);
const v_history = [ ];
for(let i = 0; i < NUM_STEPS; i++) {
const t = i*TIME_STEP;
const I_t = I(t);
neuron.step(I_t, TIME_STEP);
v_history.push({t, v: neuron.v, I: I_t, output: neuron.output*TIME_STEP*0.1, v_th: neuron.v_th });
}
return Plot.plot({
y: {
label: 'I'
},
marks: [
Plot.line(v_history, {x: "t", y: "v_th", stroke: "#AAA", strokeDasharray: "5 5", strokeWidth: 0.5 }),
Plot.line(v_history, {x: "t", y: "output", stroke: "red", strokeWidth: 7}),
Plot.line(v_history, {x: "t", y: "I", stroke: "blue"}),
Plot.line(v_history, {x: "t", y: "v", stroke: "#AAA"}),
],
});
}