Tagged Questions

1
vote
5answers
69 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(). …
2
votes
8answers
265 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 …
2
votes
7answers
96 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 …
0
votes
2answers
55 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 …
0
votes
7answers
141 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 …
0
votes
5answers
128 views

What is the smallest exact representation of 1/(2^x) that can be represented in the C programming language?

What is the smallest exact representation of 1/(2^x) that can be represented in the C programming language?
4
votes
6answers
160 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
206 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 …
0
votes
2answers
66 views

Reading float value from string upto 6 precision

Hi i have to read a flot value from string up to 6 precision , Current code is reading first 6 digits only. Thanks in Advance template <class T> bool from_string(T& t, …
1
vote
5answers
104 views

Java floating point arithmetic

Hello I need to do some floating point arithmetic in java as shown in the code below: public class TestMain { private static Map<Integer, Double> ccc = new HashMap<Intege …
2
votes
4answers
114 views

How can I turn a floating point number into the closest fraction represented by a byte numerator and denominator?

How can I write an algorithm that given a floating point number, and attempts to represent is as accurately as possible using a numerator and a denominator, both restricted to the …
0
votes
1answer
55 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 …
4
votes
2answers
100 views

Why does Perl’s sprintf not round floating point numbers correctly?

I was out looking for the rounding convention used by Perl's built-in function sprintf. I was thinking that it does a normal rounding (e.g. ROUND_HALF_UP as in Java's rounding mod …
1
vote
6answers
159 views

Strange problem comparing floats in objective-C

At some point in an algorithm I need to compare the float value of a property of a class to a float. So I do this: if (self.scroller.currentValue <= 0.1) { } where currentVal …
2
votes
4answers
178 views

Why do simple math operations on floating point return unexpected (inacurate) results in VB.Net and Python?

x = 4.2 - 0.1 vb.net gives 4.1000000000000005 python gives 4.1000000000000005 Excel gives 4.1 Google calc gives 4.1 What is the reason this happens?

1 2 3 4 5 17 next
15 30 50 per page