Logo
25
  • Command Reference
    • Data types
    • Data Import and Export
    • Data cleaning
    • Descriptive statistics and computation
    • Estimation methods
    • Graphics
    • Optimization and Solution
    • Mathematical functions
    • Operators
    • Panel Data
    • Statistical distributions and sampling
    • Time and Date
    • String handling
    • Programming
    • Multithreading and parallelization
    • Web
    • Workspace, files, folders and paths
    • _
    • A
    • B
    • C
    • D
    • E
    • F
    • G
    • H
      • h5create
      • h5open
      • h5readAttribute
      • h5read
      • h5writeAttribute
      • h5write
      • hasimag
      • hasMetaData
      • head
      • headermt
      • header
        • Purpose
        • Format
        • Examples
        • Source
        • Global Input
      • hessMTg
      • hessMTgw
      • hessMTm
      • hessMTmw
      • hessMT
      • hessMTTg
      • hessMTTgw
      • hessMTTm
      • hessMTT
      • hessMTw
      • hessp, hesscplx
      • hess
      • histf
      • histp
      • hist
      • hsec
    • I
    • J
    • K
    • L
    • M
    • N
    • O
    • P
    • Q
    • R
    • S
    • T
    • U
    • V
    • W
    • X
    • Y
    • Z
  • Learning Resources
  • Applications
  • Change Log
GAUSS
  • »
  • Command Reference »
  • H »
  • header
Next Previous

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.

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:

t title is to be printed
l lines are to bracket the title
d a date and time is to be printed
v version number of program is to be printed
f file name being analyzed is to be printed
__title:

string, title for header.

Next Previous

© Copyright 2025, Aptech Systems, Inc.

Built with Sphinx using a theme provided by Read the Docs.