*TOPER, ParR, Par1, Oper, Par2, FACT1, FACT2, CON1
Operates on table parameters.
ParRName of the resulting table parameter. The command will create a table array parameter with this name. Any existing parameter with this name will be overwritten.
Par1Name of the first table parameter.
OperThe operation to be performed: ADD. The operation is: ParR(i,j,k) = FACT1*Par1(i,j,k) + FACT2 *Par2(i,j,k) +CON1
Par2Name of the second table parameter.
FACT1The first table parameter multiplying constant. Defaults to 1.
FACT2The second table parameter multiplying constant. Defaults to 1.
CON1The constant increment for offset. Defaults to 0.
*TOPER operates on table parameters according to: ParR(i,j,k) = FACT1*Par1(i,j,k) + FACT2 *Par2(i,j,k) +CON1
Par1 and Par2 must have the same dimensions and the same variable names corresponding to those dimensions. Par1 and Par2 must also have identical index values for rows, columns, etc.
If you want a local coordinate system for the resulting array, you must dimension it as such using the *DIM command before issuing *TOPER.
This command is valid in any processor.