Graphic and displaying synaptic weights

The basics of how to develop, test, and use models.
Post Reply
psychic
Posts: 3
Joined: Fri Apr 02, 2010 11:33 am

Graphic and displaying synaptic weights

Post by psychic »

Hi
I am using Izh.hoc cells but I think the issue applies to NetCon in general.
Simply, how do I graph synaptic weights? What options does Neuron offer in displaying weights?

Thanks
ted
Site Admin
Posts: 6305
Joined: Wed May 18, 2005 4:50 pm
Location: Yale University School of Medicine
Contact:

Re: Graphic and displaying synaptic weights

Post by ted »

Weights are just like any other variables. Assuming that nc is an objref that points to a NetCon, these statements

Code: Select all

objref g
g = new Graph()
graphList[0].append(g) // update g at every time step
g.addexpr("nc.weight")
create a graph that will display nc.weight throughout a simulation.
Post Reply