Has anyone written a NEURON model like is described in the paper:
Naundorf, Wolf and Volgushev 2006: Unique features of action potential initiation in cortical neurons ?
This is the recent paper that refutes the Hodgkin-Huxley model and claims that the sodium channels are not independent.
Search found 6 matches
- Sat Oct 20, 2007 7:50 pm
- Forum: Other questions
- Topic: Cooperative sodium channels
- Replies: 1
- Views: 2653
- Sun Jul 15, 2007 3:18 pm
- Forum: Getting started
- Topic: what does run() do?
- Replies: 1
- Views: 3248
what does run() do?
What exactly happens when you call "run()"? Does it automatically call "finitialize()?" Because it seems to be behaving like it is doing that... my code looks like this: fin = FInitializeHandler ("func()") proc func () { print "test" } finitialize() run() I ge...
- Tue Jun 19, 2007 2:32 pm
- Forum: Other questions
- Topic: input to a netcon synapse from an external file
- Replies: 5
- Views: 9890
- Mon Jun 18, 2007 3:48 pm
- Forum: Getting started
- Topic: plotting multiple variables
- Replies: 1
- Views: 2726
Nevermind I found this thread:
https://www.neuron.yale.edu/phpBB2/viewtopic.php?t=552
and figured it out, thanks!
https://www.neuron.yale.edu/phpBB2/viewtopic.php?t=552
and figured it out, thanks!
- Mon Jun 18, 2007 10:54 am
- Forum: Getting started
- Topic: plotting multiple variables
- Replies: 1
- Views: 2726
plotting multiple variables
With the GUI main menu I can easily select "plot what" and add more variables to be plotted, but I can't see what code the GUI is generating to do this. I've been plotting (one voltage variable) with: newPlotV() run () But this seems to only allow me to plot one variable. How could I plot ...
- Thu Jun 14, 2007 2:52 pm
- Forum: Getting started
- Topic: data structures
- Replies: 1
- Views: 2717
data structures
Is there any way to put objects (such as synapses or point processes) into a matrix? I know that the built-in Matrix object will only hold numbers...