Name
RawDiv -- divide value by a factor (V9.0)
Synopsis
result = RawDiv(value1, value2)
Function
Divides value1 by value2 using floating point precision and returns the result.

This function does exactly the same as Div() except that it also allows a division by zero, making it possible to generate special values like NaN or infinity.

See IsNan for details.

See IsInf for details.

Inputs
value1
numerator
value2
denominator
Results
result
result of the division
Example
a=RawDiv(16,4)
Print(a)
This will print "4" to the screen.

Show TOC