Name
Div -- divide value by a factor
Synopsis
result = Div(value1, value2)
Function
Divides value1 by value2 and returns the result.

Note that although the division will use floating point precision, value2 must not be 0. If you need to divide by zero in floating point, use RawDiv() instead. See RawDiv for details.

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

Show TOC