Attach IZH model to a cell

The basics of how to develop, test, and use models.
Post Reply
subhasishg
Posts: 7
Joined: Tue Jun 25, 2013 10:22 pm

Attach IZH model to a cell

Post by subhasishg »

Hi,

I have a very basic cell which I took from:
http://www.anc.ed.ac.uk/school/neuron/t ... /tutB.html

Basically, it's a Soma and two dendrites.
nseg = 1 for soma and nseg = 5 for both the dendrites.

I want to use IZH model for the cell.
What I am basically trying to do is, inject some current through one of the dendrites and measure the membrane voltage on the soma & dendrites.

For the soma, I just need to do:
soma stim_izh = new IZH(0.5), since nseg=1.

For the dendrites, do I need to insert it to locations where each segment is ? something like:
dend[1] dend_izh[0] = new IZH(0.0)
dend[1] dend_izh[0] = new IZH(0.2)
dend[1] dend_izh[0] = new IZH(0.4)
dend[1] dend_izh[0] = new IZH(0.6)
dend[1] dend_izh[0] = new IZH(0.8)

For the dendrites, there should not be any spike, so I will need to fit IZH model parameters to match the HH-model.
Hence, segment by segment I will need to fit and ultimately at the soma, I should be able to fit IZH parameters such that it spikes. (how will the injected current change from dendrite to soma ?)

I am new to this domain, I need to know if this experiment will work ? am I thinking something wrong ?
ted
Site Admin
Posts: 6302
Joined: Wed May 18, 2005 4:50 pm
Location: Yale University School of Medicine
Contact:

Re: Attach IZH model to a cell

Post by ted »

What IZH model are you referring to?
Post Reply