Page 1 of 1
Adex neuron in neuron python
Posted: Sat May 18, 2019 6:25 am
by anandhupresannan
Hi,
Is it possible to make an Adex neuron in
neuron-python. Is there any references for it. Can u suggest how to use the
new in python.
I need to convert this
adapex=new ADEX(0.5)
to python for using inside a class.
The ADEX using here is a POINT_PROCESS (mod file).
Thank you
Re: Adex neuron in neuron python
Posted: Sat May 18, 2019 2:38 pm
by ramcdougal
The literal translation is
Since this is technically a point process, the 0.5 means it gets associated with the middle of some section, the so called currently accessed section.
This is fine, but in Python we can be more explicit about which section, here mysec:
Re: Adex neuron in neuron python
Posted: Tue May 21, 2019 2:26 am
by anandhupresannan
Thank you,
Re: Adex neuron in neuron python
Posted: Tue May 21, 2019 10:27 am
by anandhupresannan
Hai,
from the current adex model, I need to plot
grc_cell[0].GrC.vv
this variable. Currently I am using jupyter-notebook.
when I try to run using h.run() it showing this error.
Code: Select all
NEURON: scopmath library error
near line 0
^
fadvance()
advance()
step()
continuerun(1000)
and others
I am able to access the variable
grc_cell[0].GrC.vv
but don't know how to plot any idea
Re: Adex neuron in neuron python
Posted: Thu May 23, 2019 10:54 am
by ted
The error message suggests there is a problem with your model. Contact whoever developed it.
Re: Adex neuron in neuron python
Posted: Fri May 24, 2019 1:57 am
by anandhupresannan
Thank you ted,
I figure out the problem. When I declare the vv also as a RANGE range variable in the mod file, now I am able to access it now