Fundamentals of Computational Neuroscience 2e December 26, 2009 - - PowerPoint PPT Presentation
Fundamentals of Computational Neuroscience 2e December 26, 2009 - - PowerPoint PPT Presentation
Fundamentals of Computational Neuroscience 2e December 26, 2009 Chapter 2: Neurons and conductance-based model Biological background A. Schematic neuron B. Pyramidal cell C. Granule cell Dendrites Inhibitory axon terminal Nucleus Excitatory
Biological background
Inhibitory axon terminal Excitatory axon terminal Dendrites Axon Axon hillock Myelin sheath Ranvier node Postsynaptic neurons Synaptic cleft Soma
- A. Schematic neuron
- B. Pyramidal cell
- D. Spiny cell
Axon Nucleus
- C. Granule cell
- E. Purkinje cell
Ion channels
+ + + + + + + + + +
A.
Leakage channel
+ + + + + + + + + + + +
- D. Ionotropic
+ + + + + + + + +
B.
Voltage-gated ion channel
+ + + + + + + + +
C.
Ion pump
+ + + + + + + + + + + +
- E. Metabotropic
(second messenger) Neurotransmitter-gated ion channels
Synapse
Ca Ca
Neurotransmitter Synaptic vescicle Voltage-gated Ca channel
2+
Neurotransmitter receptor
non-NMDA: GABA, AMPA
∆V non−NMDA
m
∝ t e−t/tpeak
Conductance-based models
cm dV(t) dt = −I (1) I(t) = g0V(t) − g(t)(V(t) − Esyn) (2) τsyn dg(t) dt = −g(t) + δ(t − tpre − tdelay) (3)
g
m
g
L
C
Time
I (t)/5
syn
g (t)*5 V (t)
- A. Electric circuit of basic synapse
Capacitor Battery Resistor
- B. Time course of variables
2 4 6 8 10 −2 2 4
m syn
MATLAB Program
1 %% Synaptic conductance model to simulate an EPSP 2 clear; clf; hold on; 3 4 %% Setting some constants and initial values 5 c_m=1; g_L=1; tau_syn=1; E_syn=10; delta_t=0.01; 6 g_syn(1)=0; I_syn(1)=0; v_m(1)=0; t(1)=0; 7 8 %% Numerical integration using Euler scheme 9 for step=2:10/delta_t 10 t(step)=t(step-1)+delta_t; 11 if abs(t(step)-1)<0.001; g_syn(step-1)=1; end 12 g_syn(step)= (1-delta_t/tau_syn) * g_syn(step-1); 13 I_syn(step)= g_syn(step) * (v_m(step-1)-E_syn); 14 v_m(step) = (1-delta_t/c_m*g_L) * v_m(step-1) ... 15
- delta_t/c_m * I_syn(step);
16 end 17 18 %% Plotting results 19 plot(t,v_m); plot(t,g_syn*5,’r--’); plot(t,I_syn/5,’k:’)
Hodgkin–Huxley model
+40
- 70
Resting potential
(leakage channels)
Hyperpolarization Spike
Depolarization due to sodium channels Inactivation of sodium channels & opening of potassium channels Closing of sodium & potassium channels
Figure: Typical form of an action potential; redrawn from an oscilloscope picture from Hodgkin and Huxley (1939).
The minimal mechanisms
Resting potential
+ Na + Na + Na + Na + Na + K + K + K + K + K + K + K + K + K + Na
Depolarization
+ Na + Na + Na + Na + Na + Na + K + K + K + K + K + K + K + K + K + Na
Hyperpolarization
+ Na + Na + Na + Na + Na + Na + K + K + K + K + K + K + K + K + K + K
Hodgkin–Huxley equations and simulation
C dV dt = −gKn4(V − EK) − gNam3h(V − ENa) − gL(V − EL) + I(t) τn(V)dn dt = −[n − n0(V)] τm(V)dm dt = −[m − m0(V)] τh(V)dh dt = −[h − h0(V)]
Spike train with constant input
50 100 50 50 100 150 Time [ms] Membrane potential [mV]
Activation function
5 10 15 20 40 60 80 100 External current [mA/cm ] Firing frequency [Hz]
2
Noise
Compartmental models
j + 1 j j - 1 j j + 1 j + 2
- A. Chain of compartments
- C. Compartmental reconstruction
- B. Branching compartments
Simulators
Further Readings
Mark F. Bear, Barry W. Connors, and Michael A. Paradiso (2006), Neuroscience: exploring the brain, Lippincott Williams & Wilkins , 3rd edition. Eric R. Kandel, James H. Schwartz, and Thomas M. Jessell (2000), Principles of neural science, McGraw-Hill, 4th edition Gordon M. Shepherd (1994), Neurobiology, Oxford University Press, 3rd edition. Christof Koch (1999), Biophysics of computation; information processing in single neurons, Oxford University Press Christof Koch and Idan Segev (eds.) (1998), Methods in neural modelling, MIT Press, 2nd edition.
- C. T. Tuckwell (1988), Introduction to theoretical neurobiology,