|
TEMP = 7 MINUS 4 or TEMP = 7 - 4
Creates a new column named TEMP containing the value three.
|
Creates three new columns named TEMP, VX, and VY. The values in the TEMP column are the contents of column V1 minus two, the values of the VX column are the contents of column V2 minus two, and the values of the VY column are the contents of column V3 minus two.
|
Creates a new column named TEMP containing all zeros (since any number minus itself is zero).
|
Creates a new column named TEMP, where each value is the row value of column V1 minus the corresponding row value of column V2.
|
Creates three new columns named TEMP, VX, and VY. The column TEMP contains the values in V1 minus the corresponding row values of column V4. The column VX subtracts column V5 from V2. The column VY subtracts column V6 from V3.
|
TEMP = V1[10:20] - V2 or TEMP = V1[10:20] - V2[1:11]
Creates a new column named TEMP, where the first 11 cells contain the values in rows 10-20 of column V1 minus the values in rows 1-11 of column V2. The other cells in TEMP are empty.
|
SUM or TOTAL
|
Copyright IBM Corporation 2013. All Rights Reserved.
|