;The procedure mplot2.pro is a shortcut to using !p.multi. ;Use is as follows: ; mplot2,cols,rows ;Where ; cols = the number of columns of plots ; rows = the number of rows of plots ; ;The sequence for the plots: first one is the upper left corner then going ;top to bottom, left to right. ; ;To clear the figure for single plot usage type "cplot" ;which will run cplot.pro. ; ; ;Note: !p.multi=[# of empty sectors remaining on the page,cols,rows, ; # of plots stacked in the z dim., order of plots] ; if order=0 plots go left to right, top to bottom (used for mplot.pro) ; =1 plots go top to bottom, left to right (used for mplot2.pro) ; ;Also - use mplot.pro for order=0 ; ;BWBerger Summer 1998 pro mplot2,cols,rows !p.multi=[0,cols,rows,0,1] return end