9 Tables

  \begin{table}
    \begin{center}
      \begin{tabular}{||c|c|c||} \hline
        \emph{ACCESS MODE} & \multicolumn{2}{c||}{\emph{MEDIUM}} \\ \cline{2-3}
        & \emph{Disk} & \emph{Tape} \\ \hline
        \emph{Sequential} & -- & BLOCKSIZE \\
        & & FILENUMBER \\ \hline
        \emph{Direct} & NRECORDS & -- \\
        & KEYFIELD & \\ \hline
      \end{tabular}
      \caption{Parameters required for access mode and medium}
    \end{center}
  \end{table}
  
  ******************************************************************************
  
  \begin{table}
    \begin{center}
      \begin{tabular}{||l|l|l||}
        \hline
        Primitive data type& VAX FORTRAN type & HDS type \\
        \hline
        Integer & \texttt{ INTEGER} & \texttt{ ‘\_INTEGER’} \\
        Single floating point & \texttt{ REAL} & \texttt{ ‘\_REAL’} \\
        Double floating point& \texttt{ DOUBLE PRECISION} & \texttt{ ‘\_DOUBLE’} \\
        Logical & \texttt{ LOGICAL} & \texttt{ ‘\_LOGICAL’} \\
        Character & \texttt{ CHARACTER[*n]} & \texttt{ ‘\_CHAR[*n]’} \\
        \hline
      \end{tabular}
      \caption{Standard Primitive Data Types}
    \end{center}
  \end{table}

LATEX OUTPUT





ACCESS MODE
MEDIUM


Disk Tape



Sequential BLOCKSIZE
FILENUMBER



Direct NRECORDS
KEYFIELD




Table 1: Parameters required for access mode and medium

******************************************************************************





Primitive data type VAX FORTRAN type HDS type



Integer INTEGER ‘_INTEGER’
Single floating point REAL ‘_REAL’
Double floating point DOUBLE PRECISION ‘_DOUBLE’
Logical LOGICAL ‘_LOGICAL’
Character CHARACTER[*n] ‘_CHAR[*n]’




Table 2: Standard Primitive Data Types

  \begin{table}
    \begin{center}
      \begin{tabular}{|ll|ll|} \hline
        \multicolumn{2}{|c|}{\textbf{R.A.}}&\multicolumn{2}{c|}{\textbf{DEC.}} \\
        Accuracy used &Window size&Accuracy used &Window size\\ \hline
        Hours only&$\pm$30 mins&Degrees Only&$\pm$4 Degs\\
        Hours \& minutes&$\pm$10 mins&Degrees \& minutes &$\pm$25 mins\\
        Hours, mins \& secs&$\pm$30 Secs&Degrees, mins \& secs&$\pm$1 min\\ \hline
      \end{tabular}
    \end{center}
  \end{table}
  
  ******************************************************************************
  
  \begin{center}
    \begin{tabular}{c|p{33em}}
      \textbf{$<$fac$>$} & \textbf{Facility provides\ldots } \\
      \hline
      \\
      VAL & Arithmetic, mathematical functions and type conversion on single
      (scalar) \emph{values}.
      Handling of numerical errors and \emph{bad value} propagation are
      incorporated.\\
      \\
      VEC & Arithmetic, mathematical functions and type conversion on \emph{vectorised arrays},
            allowing more efficient processing of large numbers of
      data.
      Handling of numerical errors and \emph{bad value} propagation are
      incorporated.\\
      \\
    \end{tabular}
  \end{center}

LATEX OUTPUT






R.A.
DEC.
Accuracy used Window size Accuracy used Window size




Hours only ±30 mins Degrees Only ±4 Degs
Hours & minutes ±10 mins Degrees & minutes ±25 mins
Hours, mins & secs ±30 Secs Degrees, mins & secs ±1 min





******************************************************************************

<fac >

Facility provides…



VAL

Arithmetic, mathematical functions and type conversion on single (scalar) values. Handling of numerical errors and bad value propagation are incorporated.

VEC

Arithmetic, mathematical functions and type conversion on vectorised arrays, allowing more efficient processing of large numbers of data. Handling of numerical errors and bad value propagation are incorporated.