error
Posted: Wed Feb 19, 2025 2:14 am
Hello, when I tried to apply some synapses to a neuron and activate them, an error occurred:
net_send td-t = -4.2861 SelfEvent target=VecStim[1699] 31.1650471072498 flag=1
Here is my code:
I want to ask what's wrong with it.
net_send td-t = -4.2861 SelfEvent target=VecStim[1699] 31.1650471072498 flag=1
Here is my code:
Code: Select all
for i, (ampa_vecstim, nmda_vecstim) in enumerate(zip(ampa_vecstim_list, nmda_vecstim_list)):
t_ampa_vec = h.Vector(ampa_activation[i])
ampa_vecstim.play(t_ampa_vec)
t_nmda_vec = h.Vector(nmda_activation[i])
nmda_vecstim.play(t_nmda_vec)
soma_v = h.Vector()
soma_v.record(complex_cell.soma[0](0.5)._ref_v)
time_v = h.Vector()
time_v.record(h._ref_t)
h.tstop = 8000
st = time.time()
h.run()