User guide
6.6.1 Creating Mixed Layouts
InGAUSS,plotLayoutsmaynotoverlap.Forthisfunctionalityusetheplot-
CustomLayoutfunction.However,youmaydividethecanvasintosectionsofdif-
ferentsizeaslongastheydonotoverlap.
Example
//Divide the canvas into a 2x2 grid and fill in the first
//row
plotLayout(2, 2, 1);
plotHistP(rndn(1e5,1), 20);
plotLayout(2, 2, 2);
plotHistP(rndn(1e5, 1), 40);
//Divide the canvas into a 2x1 grid and fill in the bottom
//half, leaving the top section alone
plotLayout(2, 1, 2);
plotHistP(rndu(1e5, 1 ), 80);
Figure6.10:ExampleMixedLayout
6-16
GAUSSUser Guide
GAUSS Graphics










