4
votes
2answers
172 views
Convert a string with a hex representation of an IEEE-754 double into JavaScript numeric variable
Suppose I have a hex number "4072508200000000" and I want the floating point number that it represents (293.03173828125000) in IEEE-754 double format to be put into a JavaScript va …
3
votes
3answers
255 views
What are the applications/benefits of an 80-bit extended precision data type?
Yeah, I meant to say 80-bit. That's not a typo...
My experience with floating point variables has always involved 4-byte multiples, like singles (32 bit), doubles (64 bit), and lo …
1
vote
2answers
96 views
Find min/max of a float/double that has the same internal representation
Refreshing on floating points (also PDF), IEEE-754 and taking part in this discussion on floating point rounding when converting to strings, brought me to tinker: how can I get the …
11
votes
7answers
707 views
Formatting doubles for output in C#
Running a quick experiment related to Is double Multiplication Broken in .NET? and reading a couple of articles on C# string formatting, I thought that this:
{
double i = 10 * …
0
votes
3answers
165 views
32-bit to 16-bit Floating Point Conversion
I need a cross-platform library/algorithm that will convert between 32-bit and 16-bit floating point numbers. I don't need to perform math with the 16-bit numbers; I just need to …
3
votes
3answers
151 views
Double vs float on the iPhone
I have just heard that the iphone cannot do double natively thereby making them much slower that regular float.
Is this true? Evidence?
I am very interested in the issue because …
2
votes
3answers
68 views
How to test if numeric conversion will change value?
I'm performing some data type conversions where I need to represent uint, long, ulong and decimal as IEEE 754 double floating point values. I want to be able to detect if the IEEE …
2
votes
10answers
130 views
What is the rationale for all comparisons returning false for IEEE754 NaN values?
Why do comparisons of NaN values behave differently from all other values?
That is, all comparisons with the operators ==, <=, >=, <, > where one or both values is NaN return …
4
votes
3answers
197 views
what languages get IEEE 754 right ?
Hi all,
I just spend my week messing with the subject, and found no language that get the IEEE 754 spec right.
Even GCC doesn't respect the relevant C99 part (it ignores the FENV …
1
vote
7answers
160 views
Arithmetic in ruby
Why this code 7.30 - 7.20 in ruby returns 0.0999999999999996, not 0.10?
But if i'll write 7.30 - 7.16, for example, everything will be ok, i'll get 0.14.
What the problem, and ho …
1
vote
6answers
141 views
Large numbers erroneously rounded in Javascript
See this code:
<html>
<head>
<script src="http://www.json.org/json2.js" type="text/javascript"></script>
<script type="text/javascript">
var j …
0
votes
1answer
41 views
When I’m multiplying a float using multu, should I ignore the result in the LO register?
In our project, we take two floats from the user, store them in integer registers, and treat them as a IEEE 754 single precision floats, manipulating the bits by masking. So after …
6
votes
13answers
2k views
Why are c/c++ floating point types so oddly named?
C++ offers three floating point types: float, double, and long double. I infrequently use floating-point in my code, but when I do, I'm always caught out by warnings on innocuous l …
5
votes
3answers
225 views
Floating point addition: loss-of-precision issues
In short: how can I execute a+b such that any loss-of-precision due to truncation is away from zero rather than toward zero?
The Long Story
I'm computing the sum of a long series …
3
votes
8answers
287 views
Accurate evaluation of 1/1 + 1/2 + … 1/n row
I need to evaluate the sum of the row: 1/1+1/2+1/3+...+1/n. Considering that in C++ evaluations are not complete accurate, the order of summation plays important role. 1/n+1/(n-1)+ …
