Page 1 of 1

Insert noise in neurons membrane

Posted: Thu Aug 24, 2006 12:06 pm
by ahajj
I want to insert poisson noise in my neuron network membranes. I did not find how to do it. I only found how to create a current with noise.

Thx again

Antoine

Posted: Fri Aug 25, 2006 1:13 pm
by ted
Do you want channel noise or synaptic noise? For the former, use a Channel Bulider to
implement stochastic gating--see the Channel Builder tutorial (link is here
http://www.neuron.yale.edu/neuron/docs ). For the latter, use an ExpSyn or
Exp2Syn driven by an event stream generated by a NetStim. via a NetCon--read about
these in the Programmer's Reference, and for more information see chapter 10 in The
NEURON Book. If you just want to inject a fluctuating current, use the Vector class's play
method to drive an IClamp's amp variable from precomputed values stored in a Vector.

Comment:
All of these approaches involve point processes, i.e. point current sources. If a model has
more than one segment, you'll need a point process for each segment if you want each
segment to have its own local noise source.