Search found 3 matches

by homerobse
Mon Mar 12, 2018 1:04 pm
Forum: NEURON + Python
Topic: pdb.set_trace() gives Segmentation Fault
Replies: 1
Views: 4224

pdb.set_trace() gives Segmentation Fault

I'm trying to debug a bigger project I have, and when I use pdb.set_trace function from the pdb (Python Debug) package of Python, I get a Segmentation Fault crash. So, I decided to test with a very simple example code with an stimulus in a Hodgkin Huxley neuron: from neuron import h import matplotli...
by homerobse
Thu Jun 08, 2017 6:45 pm
Forum: Getting started
Topic: Equation for Single compartment models with external input
Replies: 2
Views: 8291

Equation for Single compartment models with external input

Hello! I am struggling to find what exactly are the equations that NEURON integrates when I create a section with just one segment, insert hh, insert Exp2Syn and insert IClamp. soma = h.Section(name='soma') soma2 = h.Section(name='soma2') soma.insert('hh') soma2.insert('hh') syn = h.Exp2Syn(0.5, sec...