mathLib.floatingQuotient
The system function mathLib.floatingQuotient returns the quotient of one number divided by another. A domain exception is raised if the denominator equals zero. The function is implemented using double-precision floating-point arithmetic.
- result
- Any numeric or HEX item, as described in Mathematical (system words). The quotient is converted to the format of result and returned in result.
- numericItem1
- Any numeric or HEX item, as described in Mathematical (system words). The item is converted to double-precision floating-point before the quotient is calculated.
- numericItem2
- Any numeric or HEX item, as described in Mathematical (system words). The item is converted to double-precision floating-point before the quotient is calculated.
Example
result = mathLib.floatingQuotient(myItem01,myItem02);
Related reference
Mathematical (system words)