Example: Matrix Output to External File (RELIABILITY command)

DATA LIST / TIME1 TO TIME5 1-10.
BEGIN DATA
 0 0 0 0 0
 0 0 1 1 0
 0 0 1 1 1
 0 1 1 1 1
 0 0 0 0 1
 0 1 0 1 1
 0 0 1 1 1
 1 0 0 1 1
 1 1 1 1 1
 1 1 1 1 1
END DATA.
RELIABILITY  VARIABLES=TIME1 TO TIME5
  /MATRIX=OUT('/data/relmtx.sav').
LIST.
  • RELIABILITY reads data from the active dataset and writes one set of matrix materials to file relmtx.sav.
  • The active dataset is still the file defined by DATA LIST. Subsequent commands are executed in this file.