User guide
Thisnextgraph,afteracalltoplotClearLayout,willeitherdrawoveranyexisting
graphsorbedrawninanewwindowdependingonyourgraphicspreferences.Thisset-
tingcanbecontrolledfromthe"Ongraphload"setting,locatedunderTools-> Pref-
erences-> Graphics.ItmayalsobesetwiththeplotSetNewWindowfunction.
Example
//Divide the canvas into 2 rows and 2 columns
and
//place each successive graph in the next
//available cell
for i( 1, 4, 1);
plotLayout(2, 2, i);
//Plot a percentage histogram with 10*i bins
of
//random normal data
plotHistP(rndn(1e5, 1 ), 10*i);
endfor;
//Clear the layout so future graphs are not
drawn in
//this layout
plotClearLayout();
6-14
GAUSSUser Guide










