bfloat



>>>>> "Adam" == Adam Majewski <adammaj1 at o2.pl> writes:

    Adam> Hi,
    Adam> Is it possible to get exponent of bigflot number ?

    Adam> For example :
    Adam> a:5.88235294117647b-2;

    Adam> I want to find its exponent ( here -2 ).

bfloats use radix 2, so to get the decimal exponent, you need to take
the base 10 log of the number, and throw away the fraction
appropriately.

Ray