TABLE command

NMODL and the Channel Builder.
Post Reply
patoorio
Posts: 83
Joined: Wed Jan 30, 2008 12:46 pm

TABLE command

Post by patoorio »

Hi,

I usually see the TABLE command, such as in

Code: Select all

PROCEDURE rate(cai(mM)) { 
TABLE zinf, tauz FROM 0 TO 0.01 WITH 300 
UNITSOFF 
zinf = cai*cai*cai*cai / (cai*cai*cai*cai + 8.1e-15) 
(...)
tauz = 1 - (186.67 * cai) 
(...)
UNITSON 
}
(This is a random example that I picked from elsewhere with non-relevant code removed)

I have not found any reference to it in the NMODL documentation, and the forum search only results in examples of it, with question unrelated to the command itself.
What does it do?

Regards.
csh
Posts: 52
Joined: Mon Feb 06, 2006 12:45 pm
Location: University College London
Contact:

Re: TABLE command

Post by csh »

patoorio wrote: I have not found any reference to it in the NMODL documentation, and the forum search only results in examples of it, with question unrelated to the command itself.
What does it do?
It's basically a look-up table that may help to speed up simulations:
http://www.neuron.yale.edu/neuron/stati ... html#Table
Hope that helps,
Christoph
Post Reply