0
votes
4answers
73 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 …
0
votes
3answers
64 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 …
1
vote
3answers
101 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
88 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 …
1
vote
4answers
61 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 …
2
votes
7answers
160 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
10answers
113 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
3answers
93 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
49 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 …
1
vote
3answers
102 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 …
1
vote
5answers
249 views
What is faster on division? doubles / floats / UInt32 / UInt64 ? in C++/C
Hi everyone,
I did some speed testing to figure out what is the fastest, when doing multiplication or division on numbers. I had to really work hard to defeat the optimiser. I got nonsensical results …
1
vote
6answers
74 views
Floating point number format
Hi all,
I want to use number_format function in PHP. For example:
$number = 234.51;
echo number_format($number,2);
This works for float numbers but I want to use it for different numbers. If a …
0
votes
1answer
82 views
sprintf() to truncate and not round a float to x decimal places?
Hi folks,
When calculating a golf handicap differential you are supposed to truncate the answer to 1 decimal place without rounding. No idea why but...
I know how to do this using TRUNCATE() in …
2
votes
5answers
198 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; …
3
votes
5answers
245 views
how to perform bitwise operation on floating point numbers
i tried this:
float a = 1.4123;
a = a & (1 << 3);
i get a compiler error saying that operand to & cannot be of type float.
when i do:
float a = 1.4123;
a = (int)a & (1 << …
