Tagged Questions

4
votes
6answers
514 views

strange results of simple floating point operations - bad FPU internal state?

I have a software project in which I sometimes get strange results from small, simple floating point operations. I assume there is something I have missed, and would like some tips about how to debug ...
3
votes
2answers
545 views

Newbie problem with gcc 4.2 compiler (Mac OSX): fpu_control.h: No such file or directory

I am trying to compile a program in c/c++, but am getting the error message: fpu_control.h: No such file or directory From google, I have found out that this problem is about the way floating point ...
2
votes
3answers
1k views

Floating point rounding when truncating

This is probably a question for an x86 FPU expert: I am trying to write a function which generates a random floating point value in the range [min,max]. The problem is that my generator algorithm ...
0
votes
3answers
620 views

Handling fpu exception on windows

I would like to handle fpu exception on windows, something like: #include <math.h> #include <fenv.h> #include <stdio.h> int main() { double b = 0; int raised; ...