Use play-Vector on NetCon weight
Posted: Sat Jun 07, 2008 11:17 am
Hi,
it seems that this is trickier than I thought.
I want to modulate the weight of a NetCon object with a vector I am reading from a file.
So I start with:
wich is working, because I can see that variable finter is plotted correctly.
but when I create the Netcon object:
it seems that finter always takes the value it has been initialized to, in this case 0, and never modulates the weight.
Might this be due to the fact that I define my synaptic events via:
Do I have to add something that always updates the weight?
Thanks for your help,
Chris
it seems that this is trickier than I thought.
I want to modulate the weight of a NetCon object with a vector I am reading from a file.
So I start with:
Code: Select all
finter=0
interspike.play(&finter, interspiket, 1)
but when I create the Netcon object:
Code: Select all
ncGABA = new NetCon(nil, exp2syn, 0.5, 0, finter*weight_const)
Might this be due to the fact that I define my synaptic events via:
Code: Select all
ncGABA.event(eventime)
Thanks for your help,
Chris