WHAT IS A NEURON, ANYWAY?
This post has been done In collaboration with Robert Thijs Kozma, and has been published on Neurdon.com What are neurons, and how do they work? How do these relatively simple processing elements give rise to higher perceptual and cognitive functions? We are not going to answer these big questions in this post, but we have to start somewhere…. Let’s take a closer look at what is a neuron, how a simple mathematical model can capture a remarkable spectrum of neuron’s behavior, and let’s look at some simple MATLAB code that would allow neurdons to run a neuron in MATLAB at the end of this post. Neurons are cells that make up most of the nervous system. An adult human brain weights approximately 1.3 Kg and includes 100 billion neurons. Morphologically, nerve cells have three main components: the soma, or the cell body, the axon and the dendrites. Dendrites collect impulses from other neurons, and broadcast these pulses to the soma where, if the generated potential is high enough, a spike is triggered. The neuron’s axon then communicates signals to other neurons (approximately, each neuron is connected to other 10,000 neurons). A significant portion of the brain is taken up by glia cells, which contribution to signal processing is still under debate. Also, glia may have a great deal of functional significance, albeit it hasn’t been characterized too well.
Neurons process and transfer information in the form of electrical pulses (spikes) traveling down their axons and resulting in neurotransmitter release of excitatory, inhibitory or modulatory neurotransmitters at the synapse with another neuron, usually at the receiving cell’s dendrites or soma. There are three broad classes of neurons based on their effect on other neurons’ membrane potential: excitatory, inhibitory and modulatory neurons. Complex networks of these neurons form the computational backbones of the nervous system. Whereas excitatory inputs, summing at the cell body, bring the cell closer to its firing threshold, inhibitory cells bring the cell further from its firing threshold. Excitation and inhibition are the main ingredient of cell communication and information processing in the nervous system, where processes such as cell competition and short and long term memory depend on a delicate balance between these two components. Neuromodulation acts by modifying this balance: neurotransmitters such as dopamine, acetylcholine and serotonin modify cell’s excitability, broadening a cell’s behavior in a state-dependent way. Research in neuroscience has progressively captured more and more details on the morphology and biophysics of neurons. At the same time, computational neuroscientists have synthesized scores of data and cell recordings in computational models that are simple enough to be implemented in personal computers. Since it is believed that neurons’ main communication “alphabet” is trains of spikes, which are caused by fluctuations in the cell membrane potential, computational neuroscientists have focused on mathematically characterizing these electrical fluctuations. In this post, we will look at a simple and powerful model proposed by Eugene Izhikevich (http://www.izhikevich.org/publications/spikes.pdf). This mathematical model is the most recent of a long tradition of models used to study individual neurons that display spiking/bursting behavior. Examples of these models include Hodgkin-Huxley, and FitzHugh-Nagumo, just to name a few. The Izhikevic model (2003) is particularly interesting because it is a compact model that, via suitable changes of parameters, can simulate a large array of neurons’ behavior.
The Izhikevich model consists of a system of two differential equations. The two variables in the system are the following: v denotes the membrane potential of a neuron in millivolts (mV), while u denotes the generic recovery variable. There are also five free parameters in the equation: I the external input to the neuron, such as those from synaptic inputs The long awaited Izhikevich equation is as follows: v’=0.04*v^2+5*v+140-u+I with the following reset conditions: if v>=30 then: (i.e. if v, the membrane potential, becomes greater than 30 mV, or equivalently, the neuron spikes, then the variables get bumped back, so the neuron has a chance to spike again). The video below shows an array of 50×50 neurons which receive as in input (the variable I) the grey level of the so-called “outstein”, the logo of the Department of Cognitive and Neural Systems at Boston Univeristy (check out the brightness illusion that this display causes here: http://cns-web.bu.edu/)
In our attached code, we will be solving these equations numerically using Euler’s method, so they appear in slightly different form. By changing the parameters of the equation, it is possible to reproduce all the spiking behaviors shown in the figures above. But be careful, if you randomly change the parameters, your model may no longer have any biological meaning! You can download the MATLAB (.m file) code, or just copy and paste the code below in a new MATLAB document. |

