0
votes
4answers
64 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 mat …
0
votes
4answers
58 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 …
1
vote
3answers
99 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 …
2
votes
6answers
85 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 ma …
2
votes
10answers
112 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 oppos …
0
votes
4answers
59 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 floatin …
2
votes
7answers
154 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 …
1
vote
3answers
101 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 con …
2
votes
3answers
91 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
47 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 …
2
votes
5answers
197 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)
…
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 …
3
votes
5answers
242 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) …
1
vote
6answers
73 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 differe …
3
votes
8answers
244 views
What is the maximum length in chars needed to represent any double value?
When I convert an unsigned 8-bit int to string then I know the result will always be at most 3 chars (for 255) and for an signed 8-bit int we need 4 chars for e.g. "-128".
Now wha …
