want to clamp a certain length of dendrite, and to clamp 10 neighboring nseg. in hoc file, can I use for loop? is it possible to use an array of IClamp?
Thanks!
can I create an array of IClamp in dendrites?
-
- Site Admin
- Posts: 6384
- Joined: Wed May 18, 2005 4:50 pm
- Location: Yale University School of Medicine
- Contact:
Code: Select all
create dendrite
NUMBER = 11
dendrite nseg = NUMBER
objref icl[NUMBER]
ii = 0
dendrite for (x,0) {
icl[ii] = new IClamp(x)
ii += 1
}
--Ted