Search found 6 matches

by Rivaldo
Mon Feb 02, 2015 5:41 pm
Forum: Other questions
Topic: strange section count result
Replies: 4
Views: 2560

Re: strange section count result

Thanks for the reply. I know this isn't correct because in geometry file I have this two lines of code "create dendrite[109]" and" create user5[77]". So I should have 196 sections in total. Creating only one neuron and using this piece of code I can get the correct index. index =...
by Rivaldo
Sun Feb 01, 2015 2:40 pm
Forum: Other questions
Topic: strange section count result
Replies: 4
Views: 2560

strange section count result

Hello there, Using a "Hippo" template, I generated two cells "Hippos ". "dendrite" and "user5" are declared public in the template and I know that each cell has 196 sections. Now I want to group dendrite and user5 of each cell separately into two references &q...
by Rivaldo
Fri Jan 30, 2015 11:47 am
Forum: Adding new mechanisms and functions to NEURON
Topic: Driving synaptic event using vecStim
Replies: 21
Views: 20304

Re: Driving synaptic event using vecStim

Hello,

I have a general question on VecStim() and hope this is the right place to post it. Using "new VecStim()" brings up this error "VecStim is not a template". I tested this on several machines and all give me the same error. What I'm doing wrong?

Thanks for your help,
by Rivaldo
Thu Jan 29, 2015 10:03 am
Forum: Modeling networks
Topic: Activating a synapse at recorded or precomputed times
Replies: 8
Views: 10921

Re: Activating a synapse at recorded or precomputed times

Hello, Thanks for your posts. I got it to work and at least I don't get any syntax error now. But it doesn't spike at all no matter what the input firings are. Here is the pesudocode : SPECIFY ALL THE PARAMETERS AND OBJECTS totSyn = 1000 objref syn[totSyn], nc[totSyn] double synWt[totSyn] objref vsl...
by Rivaldo
Thu Jan 22, 2015 2:03 pm
Forum: Modeling networks
Topic: Activating a synapse at recorded or precomputed times
Replies: 8
Views: 10921

Re: Activating a synapse at recorded or precomputed times

Thank you so much for the thorough answer. Here I pasted a part of the code in the case someone need it and/or for you to check it. However, I got this error saying " if arg 1 is an object it must be a point process or NULLObject". Can you help me on this? Thanks, BEGINSECTION= 0 ENDSECTIO...
by Rivaldo
Wed Jan 21, 2015 12:59 am
Forum: Modeling networks
Topic: Activating a synapse at recorded or precomputed times
Replies: 8
Views: 10921

Activating a synapse at recorded or precomputed times

Hi Ted, I have a question related to this post Driving a synapse with recorded or precomputed spike events https://www.neuron.yale.edu/phpBB/viewtopic.php?f=28&t=2117 I have 1000 vectors of event time and I want to apply these synapses to 1000 selected points on a dendritic tree. In a for loop I...