repl.txt (664B)
1 2 {{alias}}( dtype ) 3 Returns the smallest positive normal value capable of being represented by a 4 numeric real type. 5 6 The following numeric real types are supported: 7 8 - float64: double-precision floating-point numbers 9 - float32: single-precision floating-point numbers 10 - float16: half-precision floating-point numbers 11 12 Parameters 13 ---------- 14 dtype: string 15 Numeric type. 16 17 Returns 18 ------- 19 out: number 20 Smallest finite normal value. 21 22 Examples 23 -------- 24 > var m = {{alias}}( 'float16' ) 25 0.00006103515625 26 > m = {{alias}}( 'float32' ) 27 1.1754943508222875e-38 28 29 See Also 30 -------- 31