Search found 7 matches

by Kane
Thu Apr 28, 2011 4:37 pm
Forum: Modeling networks
Topic: simulate an interneuron
Replies: 8
Views: 7355

Re: simulate an interneuron

I tried to modify the weight into negative How? but the effect is still excitatory So presumably the target is an artificial spiking cell, not a synaptic mechanism attached to a section. If this inference is correct, what kind of artificial spiking cell is the target, and what happens to its activa...
by Kane
Thu Apr 28, 2011 2:07 am
Forum: Modeling networks
Topic: simulate an interneuron
Replies: 8
Views: 7355

Re: simulate an interneuron

I tried to modify the weight into negative, but the effect is still excitatory
by Kane
Fri Apr 22, 2011 12:06 pm
Forum: Modeling networks
Topic: simulate an interneuron
Replies: 8
Views: 7355

simulate an interneuron

I built a network with 200 neurons in it. But with "Netcon", one cell can only trigger the connected cell to fire. Is there any way to make the connection "inhibitive" (build interneurons' function)?

Thanks
by Kane
Tue Jan 04, 2011 2:41 pm
Forum: Modeling networks
Topic: Can NEURON model a "memory" network?
Replies: 3
Views: 3240

Re: Can NEURON model a "memory" network?

I've built a small network, trying to train it. Is that possible Yes. What learning rule do you have in mind? I don't whether NEURON is a dynamic or not? What do you mean by "dynamic"? Can Neuron support synaptic plasticity or changing the weight adaptively? If you can describe the rule f...
by Kane
Tue Dec 21, 2010 8:13 am
Forum: Modeling networks
Topic: Can NEURON model a "memory" network?
Replies: 3
Views: 3240

Can NEURON model a "memory" network?

I've built a small network, trying to train it. Is that possible, I don't whether NEURON is a dynamic or not?
Can Neuron support synaptic plasticity or changing the weight adaptively?
by Kane
Tue Dec 07, 2010 11:42 pm
Forum: Other questions
Topic: how to apply multiple stimulation?
Replies: 2
Views: 2193

Re: how to apply multiple stimulation?

You could just use as many IClamps as you need pulses. If the pulses are periodic, you could use one of the mechanisms defined by ipulse1.mod or ipulse2.mod (see periodic stimulation? http://www.neuron.yale.edu/phpBB/viewtopic.php?f=8&t=137). If they are completely arbitrary in duration and tim...
by Kane
Mon Dec 06, 2010 2:05 pm
Forum: Other questions
Topic: how to apply multiple stimulation?
Replies: 2
Views: 2193

how to apply multiple stimulation?

here is my stimulation:

neuron[0].soma {
stim = new IClamp(0.5)
stim.del = 5
stim.dur = 50
stim.amp = 1
}

I want the cell to receive stimulation two or more times, so how can I set the parameters to complete this?

Thank you!