Search found 5 matches
- Sun Jan 19, 2020 5:27 pm
- Forum: NEURON + Python
- Topic: Dynamically accessing vectors in python (_ref_x)
- Replies: 5
- Views: 4783
Re: Dynamically accessing vectors in python (_ref_x)
Thanks Rob - that cleared it up... all working now. Many thanks and cheers Christian.
- Fri Jan 17, 2020 1:14 am
- Forum: NEURON + Python
- Topic: Dynamically accessing vectors in python (_ref_x)
- Replies: 5
- Views: 4783
Re: Dynamically accessing vectors in python (_ref_x)
On working on this a bit further, in most instances the way to work via getattr() works well, however, if I try to get the vector in a location on either the dendrite or axon, it falls over. I am loading the morphology from a HOC file where the segments are in the following notation: for example, a ...
- Wed Jan 15, 2020 1:12 am
- Forum: NEURON + Python
- Topic: Dynamically accessing vectors in python (_ref_x)
- Replies: 5
- Views: 4783
Re: Dynamically accessing vectors in python (_ref_x)
Thanks Robert
that is exactly what I was after - works like a charm. It is hard for an amateur C programmer to get used to the python language as the notion of a pointer does not really exist - that bridged this gap... they do exist but in disguise. Thanks and cheers Christian.
that is exactly what I was after - works like a charm. It is hard for an amateur C programmer to get used to the python language as the notion of a pointer does not really exist - that bridged this gap... they do exist but in disguise. Thanks and cheers Christian.
- Thu Jan 09, 2020 2:10 am
- Forum: NEURON + Python
- Topic: Dynamically accessing vectors in python (_ref_x)
- Replies: 5
- Views: 4783
Dynamically accessing vectors in python (_ref_x)
Pythonisti (!) I am reworking a software bridge that we have created some 10 years ago that allows running code in Neuron being controlled by IGOR which has nice display and printing abilities. The actual bridge is coded in python3 - and has been working fine. However, even though it is in python, i...
- Sat Sep 09, 2017 8:41 pm
- Forum: NEURON + Python
- Topic: differences between python2 and python3
- Replies: 0
- Views: 18641
differences between python2 and python3
In creating a python bridge from one program to neuron, I ran into several issues - but here is the one that I have not been able to fix. In python 2.7 (Mac), this worked like a charm: def setValue(inArgs): params = inArgs.split(space) compartmentName = params[0] parameterName = params[1] value = fl...