Navigation :
number
number, data type
number is the floating-point numeric type in Envision (float32). There is no
separate integer type.
Examples
a = 1.5
b = a + 1
c = b * 2
d = c / 5
table T = with
[| as A, as B, as C, as D |]
[| a, b, c, d |]
show table "Numbers" with
T.A
T.B
T.C
T.D
This produces the following table:
Single-precision arithmetic provides roughly 1e-6 relative accuracy for most
computations.