Search found 6393 matches
- Sat Jun 11, 2005 11:37 pm
- Forum: Other questions
- Topic: reuse oc module to qualify software to parse .hoc data
- Replies: 8
- Views: 12296
Re: rendering neurophysiologic data
As far as i have i have understood your question, Very good suggestions. I have just a couple of things to add. don't forget to give "access 'section' " command (if it is not stated in the .hoc code) ex. access soma , access cell[0].soma etc. Many of NEURON's GUI tools expect a default se...
- Sat Jun 11, 2005 12:57 am
- Forum: Other questions
- Topic: reuse oc module to qualify software to parse .hoc data
- Replies: 8
- Views: 12296
Re: reuse oc module to qualify software to parse .hoc data
I don't understand the question, or even what you're trying to do. Since neuron is used there for modeling purposes nearly all data is specified in .hoc format. Do you want to draw 3D renderings of physiological data? (time series records of voltage, current, etc?) Or anatomical data? As far as I kn...
- Wed Jun 08, 2005 10:39 pm
- Forum: Getting started
- Topic: connect child, parent
- Replies: 2
- Views: 7126
Re: connect child, parent
NEURON is doing exactly what it should, right down to the notice it printed. A section can have an unlimited number of children, but only one parent. Your code is attaching a section to one parent, then attaching it to a different parent. Read about connect in the Programmer's Reference http://www.n...
- Tue Jun 07, 2005 3:05 pm
- Forum: Other questions
- Topic: What to do about cross-references in the NEURON book?
- Replies: 0
- Views: 4531
What to do about cross-references in the NEURON book?
This is a second polling question on the issue of what to do about section numbers and cross-references in the NEURON book. For background details, see the thread Section numbers and cross-references in the NEURON book If we do adopt a section numbering strategy, how should this affect cross-referen...
- Tue Jun 07, 2005 2:48 pm
- Forum: Other questions
- Topic: Section numbers and cross-references in the NEURON book
- Replies: 0
- Views: 4438
Section numbers and cross-references in the NEURON book
The NEURON book is now in press and we are already editing the first proofs. We are about to decide whether or not to number sections, and how to deal with cross-references. As those of you who have read drafts of book chapters may recall, at present the book does not have numbered sections. I would...
- Tue Jun 07, 2005 9:35 am
- Forum: Other questions
- Topic: Lost In Code - Help!
- Replies: 2
- Views: 5513
See
Details of fadvance()
in chapter 7 of the NEURON book (get draft here
http://www.neuron.yale.edu/ftp/ted/book ... xedref.pdf
). Note that fadvance sets up the equation matrix by calling treeset.c
Details of fadvance()
in chapter 7 of the NEURON book (get draft here
http://www.neuron.yale.edu/ftp/ted/book ... xedref.pdf
). Note that fadvance sets up the equation matrix by calling treeset.c
- Sat Jun 04, 2005 7:32 pm
- Forum: Other questions
- Topic: correlated Gaussian
- Replies: 1
- Views: 4482
- Sat Jun 04, 2005 1:02 pm
- Forum: NEURON Announcements
- Topic: How to cite NEURON
- Replies: 2
- Views: 79515
How to cite NEURON
Please be sure to cite NEURON if your work results in publications. Of the sources currently listed on the "Publications about NEURON" page https://nrn.readthedocs.io/en/latest/publications.html , you might want to choose Carnevale, N.T. and Hines, M.L. The NEURON Book. Cambridge, UK: Camb...
- Sat Jun 04, 2005 1:01 pm
- Forum: Other questions
- Topic: Local object references
- Replies: 9
- Views: 12988
Glad to help. Thanks for submitting your question to the NEURON Forum, where it can benefit a wide audience. Please be sure to cite NEURON if your work results in publications. Of the papers currently listed at http://www.neuron.yale.edu/neuron/bib/nrnpubs.html the best general-purpose citation woul...
- Sat Jun 04, 2005 12:36 pm
- Forum: Other questions
- Topic: Local object references
- Replies: 9
- Views: 12988
define a new class to hide an objref in a proc or func
Unfortunately that won't work. The first declaration that a name is an objref must occur outside of a proc or func. Once a name has been declared an objref, it can appear in another objref statement inside a proc or func, like this objref ref proc p() { objref ref } If you really need to hide an obj...
- Fri Jun 03, 2005 5:00 pm
- Forum: Getting started
- Topic: connect and currently accessed section
- Replies: 0
- Views: 4952
connect and currently accessed section
On 6/2/2005 xianghong yang <xyang3@utmem.edu> wrote: > The classic connect command from the tutorial is -- > > connect dendrite[1](0), soma(1) > > while a CA1 pyramidal neuron model is different -- > > soma[0] {connect soma[1] (0), 1 > connect basal[0] (0),0 > connect basal[20] (0),0 > connect basal...
- Fri Jun 03, 2005 4:32 pm
- Forum: Other questions
- Topic: Choosing a value for nseg
- Replies: 1
- Views: 5196
Choosing nseg
There have been several attempts to come up with strategies for deciding how big a compartment shoudl be. Most of them are pretty useless. The only exception I know of is to make compartments shorter than some fraction d_lambda of the AC length constant at some frequency that is so high that most me...
- Fri Jun 03, 2005 4:13 pm
- Forum: Getting started
- Topic: output: numbers instead of graph
- Replies: 1
- Views: 8013
saving numerical results to a file
One way to save the sequence of (x,y) coordinates to a file is to use the Print & File Window Manager (PFWM) to Print / Ascii. On the FAQ page http://www.neuron.yale.edu/neuron/faq/general-questions see the link called How do I print a hard copy of a NEURON window? You can also "pick" ...
- Fri Jun 03, 2005 12:58 pm
- Forum: Modeling networks
- Topic: MOD file compiling error
- Replies: 4
- Views: 12699
Re: MOD file compiling error
Lots of good questions here. Some belong under the topic Adding new mechanisms and functions to NEURON--NMODL and the Channel Builder and others belong elsewhere. It may be didactically appropriate for me to come back and split up this reply. 1. I have done hippocampal CA1 network of 500 cells (sing...
- Thu Jun 02, 2005 3:50 pm
- Forum: Modeling networks
- Topic: Insert Point Process in NetworkBuilder
- Replies: 1
- Views: 5837
Re: Insert Point Process in NetworkBuilder
1) I created a very simple network (2cells connected via one ExpSyn) with the network builder. Now I need to insert a point process (VClamp) at the presynaptic neuron, yet I can't find the created network cells in the point processes menu... Several issues here. 1. Point processes menu? What point ...