 |
ALPHA-VISION® Mathematical Operations: Mul
|
Mul
SUMMARY
Mul - Calculates the product of the given arguments
SYNTAX
Mul(
<arg1, arg2, ...>);
ARGUMENTS
- arg1 ...argN (type:float)
-
The operands of the multiplication.
DESCRIPTION
Stack
- Missing arguments are taken from the stack (and removed from there).
- The product of the arguments is pushed onto the stack.
Effect
Calculates the product of the given arguments, whereby there are
interpreted as floating point numbers:
arg1 * arg2 * ... * argN
EXAMPLES
///Stack befor (3 Elements):
//"1"
//2,5
Mul(3,,4,);
//Stack afterwards (1 Element):
//18
Syntax Notation
- [aaa]
- aaa is optional (zero or one occurences)
- (aaa|bbb)
- aaa exclusive or bbb
- (aaa)*
- aaa may occur indefinitely often or may be omitted
- (aaa)+
- aaa may occur indefinitely often but at least once
- (aaa)m..n
- aaa may occur from m to n times