LargestFixedPoint function
Fully qualified name: Std.Math.LargestFixedPoint
function LargestFixedPoint(integerBits : Int, fractionalBits : Int) : Double
Returns the largest representable number for specific fixed point dimensions.
Number of integer bits (including the sign bit).
Number of fractional bits.
The value can be computed as 2^(p-1) - 2^(-q), where p is the number of integer bits and q is the number of fractional bits.