Hello,
I am trying to insert a point process to a postsynaptic cell using the .loc() fn, for some reason the point process is also inserted into the presynaptic cell (i found this out using neuron.h.psection() ). Could you please tell me what i did wrong (see code):
pre = preCell()
post = postCell()
ampa = neuron.h.gluR() <-point process
ampa.loc(0.5, post)
thank you,
inserting point process
Moderator: hines
Re: inserting point process
Pre is still the currently accessed section.
Try:
Try:
Code: Select all
from neuron import h
ampa=h.gluR(post(0.5))
h.psection(sec=post)