15.20.2.19 X|Y...
- If you specify X|Y FROM,TO and BY or N= then a new histogram is created, or an existing histogram is rescaled. When rescaled it is recreated, and the existing scales, and title are kept, if not respecified. If you specify this for both X and Y then a 3-d histrogram is created. If unspecified FROM/TO=0 and N=100. The option PROFILE creates a profile histogram using the specified X,Y limits. examples TD:DEFINE HIST ID=5 X FROM 10 TO 20 BY 0.5 DEFNAME='test' TD:DEFINE HIST ID=5 FROM 10 TO 20 BY 0.5 DEFNAME='test' TD:DEFINE HIST ID=5 FROM 10 TO 20 N=20 DEFNAME='test' all create a histogram with 20 bins from 10 to 20 in steps 0f 0.5 TD:DEFINE HIST NEXT X FROM 10 to 20 BY .5 Y FROM 1 TO 5 BY 1 DEFNAME='3-d test' Creates a 3-d histogram of size 5 by 20. TD:DEFINE HIST NEXT X N=50 Creates a histogram with 50 bins. TD:DEFINE HIST NEXT X Creates a histogram with 100 bins. TD:DEFINE HIST IDENT=2 X FROM 1 TO 100 Y FROM 0 TO 1.5 PROFILE Creates a profile histogram with 100 bins from 1 to 100 for Y values from 0 to 1.5.