prntout of plots

Anything that doesn't fit elsewhere.
Post Reply
Amal Afzal Shaikh

prntout of plots

Post by Amal Afzal Shaikh »

how do i get to capture the plot and cell builder shapes on the slides for powerpoint presentation?

is there any other way of changing parameters(conductance) for neurons while network modelling using network builder?
Raj
Posts: 220
Joined: Thu Jun 09, 2005 1:09 pm
Location: Groningen, The Netherlands
Contact:

Post by Raj »

You can use <ctrl><Print> to get the whole screen on your clipboard then you can use <ctrl> v to paste it into powerpoint.

You can use <alt><Print> to get the active window on your clipboard then you can use <ctrl> v to paste it into powerpoint.
ted
Site Admin
Posts: 6305
Joined: Wed May 18, 2005 4:50 pm
Location: Yale University School of Medicine
Contact:

Post by ted »

is there any other way of changing parameters(conductance) for neurons while network modelling using network builder?
Changes made with the NetReadyCellGUI tool are effective only if they are
made before the NetGUI is created. After the NetGUI tool has been created,
the only way to change cell properties is by hoc statements that use the
"real" (hoc level) names of the cell instances and their sections.
NetGUI / Net Variables / Show Map
brings up a panel that displays the NetGUI name and the hoc level names
as pairs, e.g.

Code: Select all

Cell0  Cell_Cell[0]
means that the item called Cell0 in the NetGUI tool is known to hoc as
Cell_Cell[0]. Its sections will be known to hoc via dot notation of the form
Cell_Cell[0].secname, e.g. Cell_Cell[0].soma. So if that section has
hh, you could cut its gnabar by half like this
Cell_Cell[0].soma gnabar_hh /= 2
Post Reply