Precision Module

Module to estimate different quantile measures

Functions and values

Function or value Description

almostEqualNorm a b

Full Usage: almostEqualNorm a b

Parameters:
    a : float -
    b : float -

Returns: bool

Compares two float values and determines if they differ by no more than 10.*(2.**(-52.).

a : float

b : float

Returns: bool

Example

almostEqualNormRelative maximumError a b

Full Usage: almostEqualNormRelative maximumError a b

Parameters:
    maximumError : float -
    a : float -
    b : float -

Returns: bool

Compares two float values and determines if they differ by no more than specified by the maximum error.

maximumError : float

a : float

b : float

Returns: bool

Example