Toreal

toreal

The toreal function is an alias for todouble. It converts its argument to a double-precision floating point number.

Spec

toreal(arg0)

Parameters

arg0 - The value to convert to double.

Return Value

A double-precision floating point number.

Example

datatable(val:int64)[1, 42]
| extend as_real = toreal(val)
valas_real
11.0
4242.0