Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
251 views

GCC Handling Float comparison differently at different Optimization Levels

I have some simple code that is comparing two float values to illustrate a problem I see with GCC's optimization and am hoping someone can help me figure out why the output it produces is different ...
4
votes
2answers
86 views

Convert mantissa and exponent into double

In a very high performance app we find the the CPU can calculate long arithmatic significantly faster then with doubles. However, in our system it was determined that we never need more then 9 decimal ...
3
votes
5answers
490 views

Packing 32bit floats into 30 bits (c++)

Here are the goals I'm trying to achieve: I need to pack 32 bit IEEE floats into 30 bits. I want to do this by decreasing the size of mantissa by 2 bits. The operation itself should be as fast as ...
2
votes
3answers
491 views

Fractional Part of NSDecimalNumber

I'm using NSDecimalNumber to store a value for currency. I'm trying to write a method called "cents" which returns the decimal portion of the number as an NSString with a leading 0 if the number is ...
2
votes
1answer
403 views

vb.net mantissa and exponent calculation from double

Can anyone offer any advice on how to get the mantissa and exponent from a double in VB.net? I know I can do a string parse and some conversion to ints but I wondered if anyone had a mathematical ...
2
votes
5answers
267 views

Using C: How can I determine the sizes of the components of a floating point?

I am looking for suggestions on how to find the sizes (in bits) and range of floating point numbers in an architecture independent manner. The code could be built on various platforms (AIX, Linux, ...
1
vote
1answer
240 views

Get the Mantissa of a Java BigDecimal

I want to do some simple math with some very small and very large numbers. I figured I'd start with BigDecimal: scala> java.math.BigDecimal.valueOf(54, 45) res0: java.math.BigDecimal = 5.4E-44 ...
1
vote
3answers
355 views

How do ldexp and frexp work in python?

The python frexp and ldexp functions splits floats into mantissa and exponent. Do anybody know if this process exposes the actual float structure, or if it requires python to do expensive logarithmic ...
1
vote
3answers
1k views

How to find mantissa length on a particular machine?

I'm wanting to find the number of mantissa digits and the unit round-off on a particular computer. I have an understanding of what these are, just no idea how to find them - though I understand they ...
1
vote
1answer
216 views

How to detect mantissa precision overflow in GMP, before or after it happens?

The question I meant to ask concerned the mantissa, not the exponent, and has lots to do with the question I asked earlier in the week regarding "missing" digits on the sum of two negative floats. ...
0
votes
1answer
491 views

Cocoa: NSDecimalNumber with mantissa and exponent of 0

Mathematically any number with an exponent of 0 is supposed to equal 1 (my remedial math research assures me). But this code produces 5: [NSDecimalNumber decimalNumberWithMantissa:5 exponent:0 ...
-1
votes
2answers
590 views

Floating point mantissa bias

Does anybody know how to go out solving this problem? * a = 1.0 × 2^9 * b = −1.0 × 2^9 * c = 1.0 × 2^1 Using the floating-point (the representation uses a 14-bit format, 5 bits for the exponent ...