I am using the latest NEURON 7.1 on my MacBook Pro..
I was just wondering what the difference between the two pieces of code are:
Code: Select all
create soma
soma {
objref test
test = new IClamp(0.5)
}
/Applications/NEURON/nrn/i686/bin/nrniv: syntax error
in test.hoc near line 5
test = new IClamp(0.5)
while the following
Code: Select all
create soma
soma objref test
soma test = new IClamp(0.5)
I do not remember having this problem in earlier versions of NEURON..
Cheers. Armin