.SUBTRACTED FILE: PIC002
[Enter the name of the file to be subtracted from the
first file. Can be same as the first input file.]
.OUTPUT FILE: PIC999
[Enter the name of the output file. Can be same as
either input file.]
[PIC002 is subtracted from PIC001, and the result is kept in PIC999. PIC003 is then subtracted from the new PIC001, and the result is again put into PIC999.]
NOTES
BL ; Create blank output file
out999 ; Output file name
64 64 ; Dimensions of output file (same as input!)
N ; Do not use average
0.0 ; Image value
DO [n]=1,60
SU ; Subtract files operation
inp{***[n]} ; Input file
out999 ; Second input file
out999 ; Output file
* ; This input ended
ENDDO