Page 1 of 1

prntout of plots

Posted: Mon Oct 16, 2006 4:37 am
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?

Posted: Mon Oct 16, 2006 5:21 am
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.

Posted: Mon Oct 16, 2006 10:10 am
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