header¶
Purpose¶
Prints a header for a report.
Format¶
-
header(prcnm, dataset, ver)¶ Parameters: - prcnm (string) – name of procedure that calls
header(). - dataset (string) – name of dataset.
- ver (2x1 numeric vector) – the first element is the major version number of the program, the second element is the revision number. Normally this argument will be the version/revision global (__??_ver) associated with the module within which header is called. This argument will be ignored if set to 0.
- prcnm (string) – name of procedure that calls
Examples¶
// The procedure name
proc_name = "myProcedure";
// The dataset name
dataset = "mydataset";
// Version number of program
ver = 1|1;
header(proc_name, dataset, ver);
This will print to the screen :
===============================================================================
myProcedure Version 1.00 (R1) 7/26/2019 12:37 pm
===============================================================================
dataset: mydataset
-------------------------------------------------------------------------------
Source¶
gauss.src
Global Input¶
| __header: | string, containing one or more of the following letters:
|
||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| __title: | string, title for header. |