FMUL function
Syntax
FMUL (number1, number2)
CALL !FMUL (return.array, number1, number2)
Description
Use the FMUL function to perform floating-point multiplication on two numeric values. If either number evaluates to the null value, null is returned. return.array equates to number1 multiplied by number2.
This function is provided for compatibility with existing software. You can also use the * operator to perform floating-point multiplication.
Example
PRINT FMUL(.234,.567)
This is the program output:
0.1327