1
vote
4answers
76 views
Parsing a hex formated DEC 32 bit single precision floating point value in python
I'm having problems parsing a hex formatted DEC 32bit single precision floating point value in python, the value I'm parsing is represented as D44393DB in hex. The original floating point value is …
0
votes
3answers
66 views
Break on NaNs or infs
Hello all,
It is often hard to find the origin of a NaN, since it can happen at any step of a computation and propagate itself.
So is it possible to make a C++ program halt when a computation returns …
0
votes
4answers
82 views
Standard library - higher-precision floating point?
So, I'm having some precision issues in Python.
I would like to calculate functions like this:
P(x,y) = exp(-x)/(exp(-x) + exp(-y))
Where x and y might be >1000. Python's math.exp(-1000) (in 2.6 …
1
vote
3answers
102 views
NaN problem in Java
I am converting four bytes to float and I'm getting NaN as a result, but I want the value 0.0. What am I doing wrong?
This is my code:
public class abc
{
public static void main(String[] args)
…
2
votes
6answers
93 views
Sqlite, and Python floats
I'm creating a financial app and it seems my floats in sqlite are floating around. Sometimes a 4.0 will be a 4.000009, and a 6.0 will be a 6.00006, things like that. How can I make these more exact …
2
votes
10answers
119 views
C - Serialization of the floating point numbers (floats, doubles)
How to convert a floating point number into a sequence of bytes so that it can be persisted in a file? Such algorithm must be fast and highly portable. It must allow also the opposite operation, …
2
votes
7answers
166 views
Can doubles be used to represent a 64 bit number without loss of precision
I want to use lua (that internally uses only doubles) to represent a integer that can't have rounding errors between 0 and 2^64-1 or terrible things will happen.
Is it possible to do so?
2
votes
3answers
96 views
Haskell minimum/maximum Double Constant
Is there any way in Haskell to get the constant that is the largest and smallest possible positive rational number greater than zero that can be represented by doubles?
0
votes
3answers
50 views
integer automatically converting to double but not float
Hi all,
I have a function like below:
void add(int&,float&,float&);
and when I call:
add(1,30,30)
it does not compile.
add(1,30.0,30.0) also does not compile.
It seems that in both …
0
votes
2answers
74 views
Rspec ‘should change’ with floating point
Is it possible to use RSpec .should(change(...)).by(...) with float numbers and set the compare precision like this:
lambda { ...}.should change(unit, :price).by(12.151, 10e-5)
Thanks,
1
vote
3answers
108 views
Python float - str - float weirdness
>>> float(str(0.65000000000000002))
0.65000000000000002
>>> float(str(0.47000000000000003))
0.46999999999999997 ???
What is going on here and how do I convert …
2
votes
11answers
739 views
A little diversion into floating point (im)precision, part 1
Most mathematicians agree that e ** (πi) + 1 = 0. However, most floating point implementations disagree. How well can we settle this dispute?
I'm keen to hear about different languages and …
3
votes
3answers
261 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 long doubles (which …
2
votes
5answers
204 views
Why is Java’s Double.compare(double, double) implemented the way it is?
I was looking at the implementation of compare(double, double) in the Java standard library (6). It reads:
public static int compare(double d1, double d2) {
if (d1 < d2)
return -1; …
0
votes
2answers
85 views
How are float numbers represented in binary string? [closed]
Possible Duplicate:
How is floating point stored? When does it matter?
How does float numbers represented in a binary string in any programming language or generally?
Because I understand …
