The floating-point-precision tag has no wiki summary.
85
votes
10answers
2k views
Are floating-point numbers consistent in C#? Can they be?
No, this is not another "Why is (1/3.0)x3 != 1.0" question.
I've been reading about floating-points a lot lately; specifically, how the same calculation might give different results on different ...
24
votes
1answer
456 views
Why does 0.06 + 0.01 = 0.07 in ColdFusion?
Why don't math operations in ColdFusion seem to be affected by floating point math issues? Take the code:
result = 0.06 + 0.01;
writedump(result);
writedump(result.getClass().getName());
Which ...
13
votes
2answers
300 views
Precision, why do Matlab and Python numpy give so different outputs?
I know about basic data types and that float types (float,double) can not hold some numbers exactly.
In porting some code from Matlab to Python (Numpy) I however found some significant differences in ...
10
votes
3answers
152 views
Is this a valid float comparison that accounts for a set number of decimal places?
I'm writing an extension method to compare two floats using a set number of decimal points (significant figures) to determine if they are equal instead of a tolerance or percentage difference. ...
7
votes
7answers
411 views
Solving floating-point rounding issues C++
I develop a scientific application (simulation of chromosomes moving in a cell nucleus). The chromosomes are divided in small fragments that rotate around a random axis using 4x4 rotation matrices.
...
6
votes
6answers
161 views
underlying data structure for float in python
Got a question regarding to the underlying data structure of float (and precision) in Python:
>>> b = 1.4 + 2.3
>>> b
3.6999999999999997
>>> c = 3.7
>>> c
...
5
votes
6answers
111 views
How to count from 0.0001 to 1 in ruby?
I want to count from 0.0001 to 1 with 0.0001 steps in ruby.
I wrote this code but it enters to an infinite loop. Somewhy the interpreter does a wrong summation.
x = 0.0001
while x != 1.0
puts x
x ...
4
votes
3answers
154 views
Does the dot in the end of a float suggest lack of precision?
When I debug my software in VS C++ by stepping the code I notice that some float calculations show up as a number with a trailing dot, i.e.:
1232432.
One operation that lead up to this result is ...
3
votes
3answers
42 views
Efficient way to store a fixed range float
I'm heaving an (big) array of floats, each float takes 4 bytes.
Is there a way, given the fact that my floats are ranged between 0 and 255, to store each float in less than 4 bytes?
I can do any ...
3
votes
2answers
84 views
What is the relationship between digits of significance and precision loss in floating point numbers?
So I have been trying to wrap by head around the relation between the number of significant digits in a floating point number and the relative loss of precision, but I just can't seem to make sense of ...
3
votes
1answer
87 views
release mode uses double precision even for float variables
My algorithm is calculating the epsilon for single precision floating point arithmetic. It is supposed to be something around 1.1921e-007. Here is the code:
static void Main(string[] args) {
// ...
2
votes
5answers
53 views
How java stores float v double
I realize a decimal number can only be so precise stored as a float in a binary system but what I don't understand is what is happening at the 7 decimal place in my output of 10/7.
In my first output ...
2
votes
3answers
111 views
Exact binary representation of a double [closed]
Possible Duplicate:
Float to binary in C++
I have a very small double var, and when I print it I get -0. (using C++).
Now in order to get better precision I tried using
...
2
votes
4answers
138 views
Precision issues with Visual Studio 2010
I have an application written in Microsoft Visual C++ 6.0. Now I have rewritten the application in Visual Studio 2010 using C#, but the results are not matching because of precision problems. One of ...
2
votes
2answers
58 views
Machine precision estimations
Some people say that machine epsilon for double precision floating point numbers is 2^-53 and other (more commonly) say its 2^-52. I have messed around estimating machine precision using integers ...
2
votes
3answers
72 views
Typecasting int to float turns DivideByZeroException into Infinity
I wrote a simple divide function in C#:
private string divide(int a, int b)
{
return string.Format("Result: {0}", a / b);
}
Calling MessageBox.Show(divide(3, 0)) results in, as ...
2
votes
1answer
129 views
Double-output precision is higher than double precision
I am printing some data from a c++ program to be processed/visualized by Paraview, but I am having the following problem: Paraview supports Float32 and Float64. Float64 is equivalent to double with ...
1
vote
1answer
25 views
SQL Server built-in function Stdevp calculating incorrectly
I am using SQL Server 2008, one of my requirements is to calculate population standard deviation. SQL Server provides a built-in function stdevp for the same. I am using it but I am befuddled by the ...
1
vote
3answers
215 views
80 bit floating point arithmetic in C/C++
Let assume a, b are _int64 variables.
Need to calculate sqrt((long double)a)*sqrt((long double)b) in high precision 80 bit floating point.
Example. (__int64)(sqrt((long double)a)*sqrt((long double)a) ...
1
vote
4answers
124 views
Large number of float digits without extra library
i have a float value that is hundreds of digits long (like the first 100 digits of pi - 3) and need a way to operate on it. is there any way to store and operate on the float that has a large number ...
1
vote
2answers
1k views
Objective-C Float / Double precision
I was messing around with storing floats and doubles using NSUserDefaults for use in an iPhone application, and I came across some inconsistencies in how the precision works with them, and how I ...
0
votes
2answers
25 views
Cross-machine inconsistency in WKT conversion for SQL spatial types
I am experiencing inconsistent behavior across machines with conversion to Well-Known Text (WKT) of spatial types in SQL server 2008. It looks as if the data is being stored identically, but the ...
0
votes
2answers
61 views
Strange Heroku float bit-precision error (ruby on rails)
Originally a coordinate field on my model was using integer, but when I tried to deploy to Heroku, I was reminded (by a crash) that I needed it to be a float instead (since I had decimal points in my ...
0
votes
3answers
81 views
c++ floating point problems
I'm new to C++ and programming in general . I'm trying out small programs just to get my hand dirty . Below is a program I created for calculating the volume of a cone.
Problem : No matter what I do ...
0
votes
2answers
57 views
Why does calling to_i on a Float subtract one from the value?
I have a case where I am doing some math on a Float object and when I call to_i on it it is being reduced by one.
value = 0.29 * 100
value.to_i
=> 28
I know that floating point numbers are ...
0
votes
1answer
72 views
Adding 32 bit floating point numbers.
I'm learning more then I ever wanted to know about Floating point numbers.
Lets say I needed to add:
1 10000000 00000000000000000000000
1 01111000 11111000000000000000000
2’s complement form.
...
0
votes
3answers
120 views
Ruby - Multiplication issue
My output is like this -
ruby-1.9.2-p290 :011 > 2.32 * 3
=> 6.959999999999999
And I remember sometime back on another machine I had got it like.. 2.32 * 3 = 6
What is my mistake?
Thanks a ...
0
votes
0answers
118 views
how do i set the floating precision value in teradata
Precision error in FLOAT type constant or during implicit conversions I am getting this error but in sql assistant i did this- go to Tools>Options>AnswerSet tab and you should see a box for "Display ...
0
votes
1answer
116 views
How to use Floating Point extended precision in a MacOs or Windows system
This little piece of code is making me crazy:
#include <stdio.h>
int main()
{
double x;
const double d=0.1;
x=d ;
for (int i=0; i<30; i++)
{
printf("Cycle %d Value :%.20e ...
0
votes
0answers
939 views
How to use Gcc 4.6.0 libquadmath and __float128 on x86 and x86_64
I have medium size C99 program which uses long double type (80bit) for floating-point computation. I want to improve precision with new GCC 4.6 extension __float128. As I get, it is a ...
0
votes
1answer
53 views
choosing floating point calculation model
my question is mainly for scientific computations but I am asking in general. How do you practically choose fp model in compiler ? for example intel has precise, strict, fast, extended, source, double ...
-1
votes
1answer
27 views
What is the maximum xeon fpu precision?
"I think i know" that all X86/X64 processors floating point units have a width of 80 Bits, but i don't find any substantial documentation about that.
Any References?