Div
Arithmetic functions divide (/)
syntax
- div(a, b)
- a / b
definition
div(a, b) or a / b results in the element-by-element division of the values of Data item a by the corresponding values of data item b. The resulting Metric of the Values unit is the quotient of the Metric of the arguments.
description
A division by zero results in an undefined (Null) value.
applies to
Data items with Numeric or Point Value type
Units with Numeric value type
conditions
- Domain units of the arguments must match or be Void (literals or parameters can be divided by data items of any domain).
- Arguments must have matching:
example
1. attribute<float32> divAB (ADomain) := div(A, B);
2. attribute<float32> divAB (ADomain) := A / B;
| A | B | divAB |
|---|---|---|
| 0 | 1 | 0 |
| 1 | -1 | -1 |
| -2 | 2 | -1 |
| 3.6 | 1.44 | 2.5 |
| 999 | 111 | 9 |
ADomain, nr of rows = 5