|
Using a column containing the same number x in each row as multiplier is the same as using the constant x as multiplier.
|
|
TEMP = 8 MULT 4 or TEMP = 8 * 4
|
Creates three new columns named TEMP, VX, and VY. The values in the TEMP column are two times the contents of column V1, the values of the VX column are two times the contents of column V2, and the values of the VY column are two times the contents of column V3.
|
Creates a new column named TEMP, where each value is the row value of column V1 multiplied by the corresponding row value of column V2.
|
Creates three new columns named TEMP, VX, and VY. The column TEMP contains the values in V1 times the corresponding row values of column V4. The column VX multiplies column V2 by V5. The column VY multiplies column V3 by V6.
|
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 times the values in rows 1-11 of column V2. The other cells in TEMP are empty.
|
Copyright IBM Corporation 2013. All Rights Reserved.
|