time-to-botec/squiggle/node_modules/@stdlib/utils/real-max/docs/repl.txt
NunoSempere b6addc7f05 feat: add the node modules
Necessary in order to clearly see the squiggle hotwiring.
2022-12-03 12:44:49 +00:00

32 lines
637 B
Plaintext

{{alias}}( dtype )
Returns the maximum finite value capable of being represented by a numeric
real type.
The following numeric real types are supported:
- float64: double-precision floating-point numbers
- float32: single-precision floating-point numbers
- float16: half-precision floating-point numbers
Parameters
----------
dtype: string
Numeric type.
Returns
-------
out: number
Maximum finite value.
Examples
--------
> var m = {{alias}}( 'float16' )
65504.0
> m = {{alias}}( 'float32' )
3.4028234663852886e+38
See Also
--------