I created a tutorial for NEUORN + Python, I hope you find it useful:
https://github.com/orena1/NEURON_tutorial
Search found 55 matches
- Fri Dec 27, 2019 6:05 pm
- Forum: Other ways of using NEURON in neuroscience education
- Topic: NEURON tutorial
- Replies: 0
- Views: 84201
- Sat Mar 24, 2018 4:41 am
- Forum: UNIX/Linux
- Topic: nrnivmodl compiling in Linux
- Replies: 8
- Views: 33132
Re: nrnivmodl compiling in Linux
Hi usually when I get this problem in a new computer (ubuntu) I do the following:
Code: Select all
sudo apt-get install libncurses-dev
- Thu Jul 27, 2017 8:14 am
- Forum: Anatomically detailed models
- Topic: distance() documentation
- Replies: 5
- Views: 17375
Re: distance() documentation
I also got confused, I think the documentation should be changed to the way Brad suggested.
Thanks.
Thanks.
- Tue May 16, 2017 8:07 am
- Forum: Adding new mechanisms and functions to NEURON
- Topic: pass an array from hoc to a mod file
- Replies: 1
- Views: 7200
pass an array from hoc to a mod file
Hello,
I am trying to pass a vector (with values) to a mod file. Is it possible? do you an example of doing it? I do not know exactly how to write the mod file so it will accept a hoc Vector.
Thanks.
I am trying to pass a vector (with values) to a mod file. Is it possible? do you an example of doing it? I do not know exactly how to write the mod file so it will accept a hoc Vector.
Thanks.
- Thu Nov 26, 2015 1:22 pm
- Forum: Modeling networks
- Topic: Add self event to queue
- Replies: 1
- Views: 8218
Add self event to queue
Hello, I was wondering if it is possible to add a self-event to an ARTIFICIAL_CELL to the queue. I know it is possible to add an event to a point processor with CVode.event() but I was wondering if it is possible to add a self-event, an event that will reach the NET_RECEIVE of the ARTIFICIAL_CELL (I...
- Tue Oct 13, 2015 5:06 pm
- Forum: NEURON + Python
- Topic: Introducing LFPy, a Python module for simulating LFPs
- Replies: 3
- Views: 7429
- Thu Sep 24, 2015 5:41 am
- Forum: Getting started
- Topic: Change NetCon Source
- Replies: 1
- Views: 6167
Change NetCon Source
Hello, If I created a NetCone using this code: objref nc nc = New NetCon( nil, postCell) can I (after already creating the nc) change the source from nil to something else, I know that there is a command nc.setpost(?) - that change the target of the NetCon, but I did not find a command that change t...
- Tue Sep 01, 2015 7:42 am
- Forum: NEURON Announcements
- Topic: The NEURON Book
- Replies: 3
- Views: 46934
Re: The NEURON Book
Hi,
Is there an ETA for a new edition?
Thanks.
Is there an ETA for a new edition?
Thanks.
- Sun Jul 12, 2015 4:16 pm
- Forum: NEURON + Python
- Topic: uninsert python
- Replies: 6
- Views: 14645
Re: uninsert python
Thank you for the reply,
Oren.
Oren.
- Sun Jul 05, 2015 9:40 am
- Forum: NEURON + Python
- Topic: uninsert python
- Replies: 6
- Views: 14645
uninsert python
Hello, I am trying to use uninsert in python. as I read form the documentation using insert is as follows sec.insert("hh") so I assumed that uninsert will work like this: sec.uninsert("hh") but I get the follwoing error code: In [11]: sec.uninsert("hh") ----------------...
- Wed Jun 10, 2015 3:31 pm
- Forum: UNIX/Linux
- Topic: IV config issue (ARM processor)
- Replies: 2
- Views: 7810
Re: IV config issue (ARM processor)
Look here.
http://www.neuron.yale.edu/phpbb/viewto ... f=6&t=2291
Maybe you can find some help there.
http://www.neuron.yale.edu/phpbb/viewto ... f=6&t=2291
Maybe you can find some help there.
- Wed Apr 29, 2015 5:34 am
- Forum: Other questions
- Topic: Question about edge of cylinder and axial resistance
- Replies: 5
- Views: 4667
Re: Question about edge of cylinder and axial resistance
Thank You,
Oren
Oren
- Tue Apr 28, 2015 4:49 am
- Forum: Other questions
- Topic: Question about edge of cylinder and axial resistance
- Replies: 5
- Views: 4667
Question about edge of cylinder and axial resistance
Hello, I am trying to understand how Neuron is building the section and I am not sure I understand correctly. Especially I have problem understanding the edges of the cylinders. Questions: 1. there is no membrane resistance in the edges of the cylinders? If I want to calculate the total membrane res...
- Thu Dec 25, 2014 5:39 am
- Forum: NEURON + Python
- Topic: record from one cell of a matrix to a vector
- Replies: 4
- Views: 4219
Re: record from one cell of a matrix to a vector
So there is not secret syntax to get the reference of a index in a matrix.. :-)
Thank you,
Oren.
Thank you,
Oren.
- Wed Dec 24, 2014 8:45 am
- Forum: NEURON + Python
- Topic: record from one cell of a matrix to a vector
- Replies: 4
- Views: 4219
Re: record from one cell of a matrix to a vector
Hello Ted, Thank You for the respond. Sorry for the confusion, I meant a single index in a hoc language matrix. I want to record the values in a specific index in a matrix, as you can see here: http://www.neuron.yale.edu/neuron/static/docs/help/neuron/neuron/classes/linmod.html ... nlm = h.LinearMec...