LIST command

Syntax: LIST x1 { x2 ... x5 } { first { last { increment }}}
LIST\MATRIX m
LIST\MATRIX\FORMAT m 'format'
Qualifiers: \COUNTER, \MATRIX, \FORMAT
Defaults: \-COUNTER, \-MATRIX, \-FORMAT
Examples: LIST X Y Z 1 10
LIST\MATRIX M[1:NR,1:#]
LIST\MATRIX\FORMAT M '%7.2g'

By default, the LIST command displays a listing of the specified vectors, xI, from index first to index last by increments of increment.

first defaults to 1 and increment defaults to 1 if either are not entered. If last is not entered, all the elements of each vector are listed.

To display a counter on the left, under a # header, use the \COUNTER qualifier.

List a matrix

Syntax: LIST\MATRIX m
LIST\MATRIX\FORMAT m 'format'

The LIST\MATRIX command displays a listing of a matrix. The format defaults to `%12g'. Use the \FORMAT qualifier to indicate that a user specified format has been entered. The format must be enclosed in quotes. Any standard C-style format is valid.