Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Fig13A.hoc
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,7 @@ assign_synapses(0.01) // assign value (in uS) to each synapse
objectvar RG,Pulse[ncells] // create object variables

RG = new Random() // create random generator
RG.Random123()

for (i=0; i<ncells; i=i+1) {
print "defining current pulse in RE[",i,"]"
Expand Down
1 change: 1 addition & 0 deletions Fig13B.hoc
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,7 @@ assign_synapses(0.005) // assign value (in uS) to each synapse
objectvar RG,Pulse[ncells] // create object variables

RG = new Random() // create random generator
RG.Random123()

for (i=0; i<ncells; i=i+1) {
print "defining current pulse in RE[",i,"]"
Expand Down
1 change: 1 addition & 0 deletions Fig5A.hoc
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,7 @@ assign_synapses(1) // assign value (in uS) to each synapse
objectvar RG,Pulse[ncells] // create object variables

RG = new Random() // create random generator
RG.Random123()

for (i=0; i<ncells; i=i+1) {
print "defining current pulse in RE[",i,"]"
Expand Down
1 change: 1 addition & 0 deletions Fig5B.hoc
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@ assign_synapses(0.5) // assign value (in uS) to each synapse
objectvar RG,Pulse[ncells] // create object variables

RG = new Random() // create random generator
RG.Random123()

for (i=0; i<ncells; i=i+1) {
print "defining current pulse in RE[",i,"]"
Expand Down
1 change: 1 addition & 0 deletions Fig6A.hoc
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,7 @@ assign_synapses(0.5) // assign value (in uS) to each synapse
objectvar RG,Pulse[ncells] // create object variables

RG = new Random() // create random generator
RG.Random123()

for (i=0; i<ncells; i=i+1) {
print "defining current pulse in RE[",i,"]"
Expand Down
1 change: 1 addition & 0 deletions Fig6B.hoc
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,7 @@ assign_synapses(0.333) // assign value (in uS) to each synapse
objectvar RG,Pulse[ncells] // create object variables

RG = new Random() // create random generator
RG.Random123()

for (i=0; i<ncells; i=i+1) {
print "defining current pulse in RE[",i,"]"
Expand Down
1 change: 1 addition & 0 deletions Fig6C.hoc
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,7 @@ assign_synapses(0.25) // assign value (in uS) to each synapse
objectvar RG,Pulse[ncells] // create object variables

RG = new Random() // create random generator
RG.Random123()

for (i=0; i<ncells; i=i+1) {
print "defining current pulse in RE[",i,"]"
Expand Down
1 change: 1 addition & 0 deletions Fig6D.hoc
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,7 @@ assign_synapses(0.2) // assign value (in uS) to each synapse
objectvar RG,Pulse[ncells] // create object variables

RG = new Random() // create random generator
RG.Random123()

for (i=0; i<ncells; i=i+1) {
print "defining current pulse in RE[",i,"]"
Expand Down
1 change: 1 addition & 0 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -122,3 +122,4 @@ ModelDB-Note: This model updated for NEURON version 4.3.1 and higher.
10-2007: AD, better synaptic mechanisms using counters
20120106 changed mod files for better solve methods (avoid euler)
as per web page http://www.neuron.yale.edu/phpbb/viewtopic.php?f=28&t=592
2024-11: Updated hoc files to use Random123