Search found 6 matches

by JZ
Sat Oct 20, 2007 7:50 pm
Forum: Other questions
Topic: Cooperative sodium channels
Replies: 1
Views: 2653

Cooperative sodium channels

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.
by JZ
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...
by JZ
Tue Jun 19, 2007 2:32 pm
Forum: Other questions
Topic: input to a netcon synapse from an external file
Replies: 5
Views: 9890

This is helpful to me too, does anyone know of a similar implementation (with netcon) of Destexhe's model of the GABA_a receptor?
by JZ
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!
by JZ
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 ...
by JZ
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...