1
vote
5answers
243 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 …
2
votes
5answers
181 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)
…
3
votes
5answers
225 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
68 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 …
0
votes
1answer
58 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 usi …
3
votes
8answers
240 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 …
0
votes
2answers
76 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?
Be …
2
votes
8answers
105 views
Lower Bounds For Floating Points
Are there any lower bounds for floating point types in C? Like there are lower bounds for integral types (int being at least 16 bits)?
2
votes
9answers
327 views
how to print out each bit of a floating point number?
I am trying to print out each bit of a floating point number in c.
I can be able to do it for integer with this:
int bit_return(int a, int loc)
// bit returned at location
{
in …
3
votes
7answers
132 views
Floating point again
Yesterday I asked a floating point question, and I have another one. I am doing some computations where I use the results of the math.h (C language) sine, cosine and tangent functi …
1
vote
2answers
95 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 …
1
vote
5answers
103 views
How should I implement .Equals() in my Vector3 structure?
I have an immutable Vector3 structure, and I'm wondering how to best implement the .Equals() method so that it's useful and still satisfies the Guidelines for Overloading Equals(). …
0
votes
7answers
155 views
How to work around the decimal problem in JavaScript? [closed]
Possible Duplicates:
Strange problem comparing floats in objective-C
Is JavaScript’s math broken?
1.265 * 10000 = 126499.99999999999 ?????
After watching this I …
4
votes
6answers
174 views
I have a floating-point overflow problem
Well, I'm a beginner, it's my year as a computer science major. I'm trying to do
an exercise from my textbook that has me use a struct called MovieData that has
a constructor that …
4
votes
6answers
220 views
How deal with the fact that most decimal fractions cannot be accurately represented in binary?
So, we know that fractions such as 0.1, cannot be accurately represented in binary base, which cause precise problems (such as mentioned here: http://stackoverflow.com/questions/14 …
