net_send and net_receive

Moderator: wwlytton

Post Reply
pa1kumar
Posts: 13
Joined: Tue Oct 17, 2006 3:51 pm

net_send and net_receive

Post by pa1kumar »

Hello

I am new to this forum as well as the neuron software and i had a question regarding the net_send and net_receive blocks, llike how does these blocks actually work in neuron software. I want to use it for making a pulse train for my input to the neuron.

If anybody could help me out in this regard that would be of great help to me and i would really appreciate that.

thanks
ted
Site Admin
Posts: 6300
Joined: Wed May 18, 2005 4:50 pm
Location: Yale University School of Medicine
Contact:

Post by ted »

The contents of the NET_RECEIVE block specify what happens when an event
is delivered to a point process or artificial spiking neuron.
There is no net_send block. net_send is used to send a self event (an event
that is delivered, after some delay, to the same point process or artificial
spiking cell that produced it in the first place).

A good way to start learning more about these topics is by reading chapter
10 of The NEURON Book, or at least this article
Hines, M.L. and Carnevale, N.T.
Discrete event simulation in the NEURON environment.
Neurocomputing 58-60:1117-1122, 2004
which you can get from a link at
http://www.neuron.yale.edu/neuron/bib/nrnpubs.html
making a pulse train for my input to the neuron.
So you will want to create a NetStim to generate events that are conducted
by a NetCon to a target. The target will either be an artificial spiking neuron
(e.g. IntFire1, IntFire2, IntFire4), or a point process with a NET_RECEIVE
block (e.g. ExpSyn or Exp2Syn) that is attached to a biophysical model
neuron. These are all described in the Programmer's Reference--
NetStim http://www.neuron.yale.edu/neuron/stati ... ml#NetStim
NetCon http://www.neuron.yale.edu/neuron/stati ... tml#NetCon
IntFire1 http://www.neuron.yale.edu/neuron/stati ... l#IntFire1
IntFire2 http://www.neuron.yale.edu/neuron/stati ... l#IntFire2
IntFire4 http://www.neuron.yale.edu/neuron/stati ... l#IntFire4
ExpSyn http://www.neuron.yale.edu/neuron/stati ... tml#ExpSyn
Exp2Syn http://www.neuron.yale.edu/neuron/stati ... ml#Exp2Syn
Post Reply