The floating-point-precision tag has no wiki summary.
1
vote
1answer
66 views
Million decimal places in python
We recently delve into infinite series in calculus and that being said, I'm having so much fun with it. I derived my own inverse tan infinte series in python and set to 1 to get pi/4*4 to get pi. I ...
1
vote
1answer
40 views
L (long) postfix in boost erf(): when is needed and when not?
In the Boost implementation of erf function
in a header <boost/math/special_functions/erf.hpp> we have
result = z * 1.125 + z * 0.003379167095512573896158903121545171688L;
in the code ...
0
votes
3answers
96 views
Any risk of using float variables as loop counters and their fractional increment/decrement for non “==” conditions?
Are we safe to use floats as loop-counters and to increment/decrement them by fractional amounts at each iteration,like in the seemingly risk-free program below?Of course I know that using floats as ...
1
vote
2answers
35 views
How to get NSDecimalNumber from NSDictionary
I want to set the value for Key1 as 10.00 itself rather than 10
NSDictionary *dict = [NSDictionary dictionaryWithObjects:[NSArray arrayWithObjects:
...
1
vote
1answer
25 views
System.out.printf with specific flags not returning the expected number
I'm just starting out using Java. And I came across this issue :
This is my code :
import java.util.Scanner;
public class FormatageValeurNumerique {
/**
* @param args
*/
public ...
0
votes
2answers
72 views
Floating point - NaN
I am working on a research project on java in which some tough calculations have to be done. However I am done with most part but stuck at a point.. I have to calculate the following :
(2.1-2.3) ...
2
votes
6answers
106 views
Is it safe to cast a float with value 0.0f to boolean?
I know that due to precision errors, a float varibale should be checked to equal a value always with some tolerance. But what's is that even the case if I manually set the float variable to 0.0f?
For ...
-1
votes
1answer
70 views
Floating Point addition using integer operations
I am writing code for enumerating floating point addition in C++ using integer addition and shifts for some homework. I have googled the topic and I am able to add floating point numbers by adjusting ...
1
vote
1answer
34 views
Multiprecision Python library that plays well with boost::multiprecision or other options?
I am working on a project that revolves around multiprecision "complex" numbers, specifically it's a Mandelbrot Set-based app, but with a twist that requires decent correspondence between the output ...
5
votes
3answers
55 views
How do I remove matrices from a list that are duplicates within floating-point error?
This question is similar to questions that have been asked regarding floating-point error in other languages (for example here), however I haven't found a satisfactory solution.
I'm working on a ...
0
votes
1answer
69 views
Matlab: Loss of precision in calculations. Scaling of variables possible?
Today I ran into a problem with precision in Matlab:
Tp = a./(3600*sqrt(g)*sqrt(K).*u.*Sd*sqrt(bB))
where
a =
346751.503002533
g =
9.81
bB =
...
0
votes
1answer
53 views
From what number the following conversion integer -> double -> integer is not valid?
Assuming that my computer use IEEE 754 floating-point encoding, I wonder what is the smallest number for which the following function return false:
constexpr bool test(const unsigned long long int x)
...
4
votes
4answers
74 views
How to actually avoid floating point errors when you need to use float?
I am trying to affect the translation of a 3D model using some UI buttons to shift the position by 0.1 or -0.1.
My model position is a three dimensional float so simply adding 0.1f to one of the ...
0
votes
2answers
70 views
Pandas floating point issue with cumsum and division
I've ranked the total sales (TOTAL_2012) in descending order and am trying to get the list of groups to have roughly 25% of the sales thus tier 1 group is grossing the most sales/company.
...
0
votes
0answers
24 views
XSD: precision of xs:decimal with restricted length vs. xs:float
I'm trying to understand the meaning of "precision" with respect to an element defined as xs:float and one which is defined as xs:decimal but whose length is restricted.
I know that one cannot ...
0
votes
1answer
124 views
nVidia GPUs for Research Purposes: Float Precision
I'm doing my PhD research in A.I. and I've gotten to the part where I have to start using CUDA libraries for my testing platform.
I've played with CUDA before, and I have a basic understanding of how ...
4
votes
5answers
197 views
Why the digits after decimal are all zero?
I want to perform some calculations and I want the result correct up to some decimal places, say 12.
So I wrote a sample:
#define PI 3.1415926535897932384626433832795028841971693993751
double d, k, ...
-1
votes
1answer
54 views
Round of floating values [duplicate]
I am designing a cash register in which i have to compare 2 float values and i am getting an error every time while comparing it .i.e because i cannot round off the difference in the amount up to 2 ...
0
votes
0answers
48 views
why is 123.56 - 62.12 = 61.440000000000005 [duplicate]
I am just starting with python and was running through a tutorial here
Running the exmamples, I was surprised to find
print("123.56 - 62.12 =", 123.56 - 62.12)
To come out as
123.56 - 62.12 ...
2
votes
2answers
100 views
Rounding when [int] = [float] + [int] (Obj-C, iOS?)
In this case:
float a = 0.99999f;
int b = 1000;
int c = a + b;
In result c = 1001. I discovered that it happens because b is converted to float (specific for iOS), then a + b doesn't have enough ...
1
vote
1answer
50 views
Data precision in Stata
This is the trivial problem and I just wanted to know what is happening here.
Following is my sample data for which I am trying to find the row max in stata
x1 x2 x2
...
2
votes
2answers
98 views
spliting 64 bit value to fit in argument type of double
I have a function for which i cannot change the syntax, say this is some library function that i am calling:
void schedule(double _val);
void caller() {
uint64_t value = 0xFFFFFFFFFFFFFFF;
...
-4
votes
2answers
57 views
How to get the answer to exact bits using double in android [closed]
I have made a Calculator app on android but whenever I do some multiplication of the kind:
23.3 x 3.3
The answer I get is something like:
76.988999999999
Now please tell me how to resolve this ...
1
vote
1answer
58 views
Largest range of uniformly distributed float values?
I'm trying to get a better understanding of the distribution of float values on the real number line.
I wrote this code to count the number of uniformly distributed representable values in a range ...
1
vote
2answers
56 views
Really basic mpir questions
I know this is a really dumb question but I was hoping someone could help.
I'm forced to use mpir for precision reasons so I have to translate all my c code for it. Basically I just need more ...
3
votes
1answer
110 views
Floating point accuracy again
Yesterday I asked a question about why I was losing accuracy in a floating point arithmetic. I received an answer about how it was due to intermediate results being held in x87 registers. This was ...
3
votes
1answer
100 views
Maximum and minimum exponents in double-precision floating-point format
According to the IEEE Std 754-2008 standard, the exponent field width of the binary64 double-precision floating-point format is 11 bits, which is compensated by an exponent bias of 1023. The standard ...
7
votes
2answers
145 views
Get next smallest Double number
As part of a unit test, I need to test some boundary conditions. One method accepts a System.Double argument.
Is there a way to get the next-smallest double value? (i.e. decrement the mantissa by 1 ...
-1
votes
2answers
177 views
calculate decimal fraction and show digits after decimal in a precise manner [closed]
Given a fraction (103993/33102), I need to find 50000 digits after the decimal point for this fraction.
Initially I used setprecision(k) in C++, but it gives only 17 digits after decimal point. I ...
-1
votes
1answer
67 views
Integer multiplied by float and then divided by same float - a clean way to force value back to original integer
Alright so we have the classic 1 * 1/3 * 3 = 0.9999999. I understand why this is the case.
In my use case, I am trying to result in an integer. I am happy to take the floor of my value, except when ...
2
votes
1answer
84 views
How do I access rounding modes defined in IEEE 754 in python?
I have the need to compute exactly in single precision floating points in Python.
The options I've tried are decimal.Decimal and numpy.float32. However Decimal is not based on IEEE 754, and float32 ...
0
votes
5answers
101 views
C floating point arithmetic
I am trying to implement a function to calculate the frequencies of words and word pairs to discover which word pairs are collocations (i.e, have a meaining in and of themselves) (e.g., disk drive). ...
5
votes
5answers
88 views
Error With Using (int) and (double) together to Cut off Decimals
When I am using (int) with (double) some times it is not working correct.
Look At The PHP Code Example:
I Need To LEAVE 2 Decimals And REMOVE Other...
I Know number_format(); function But I Cannot ...
0
votes
1answer
261 views
adding decimal numbers with JavaScript
I hate to add to the litany of questions regarding this subject but I dont know where else to turn for a concise answer so here goes:
I have this form on jsFiddle
I got to this point by combining ...
1
vote
6answers
259 views
C++ How to avoid floating-point arithmetic error
I am writing a loop that increments with a float, but I have come across a floating-point arithmetic issue illustrated in the following example:
for(float value = -2.0; value <= 2.0; value += 0.2)
...
0
votes
1answer
63 views
Is it possible to create a decimal value that is perfectly precise.
Is it possible to create a decimal value that is perfectly precise?
On my computer, an integer value in C++ is 32 bits, and a long/double/long long are 64 bits. It is my belief, and correct me if ...
1
vote
1answer
85 views
Why does using modulo on non-integer values lose floating-point precision? [duplicate]
I am wondering why I am losing precision when using this code :
double x = 12.0456; // or float : same result
System.out.println(x); // outputs 12.0456 obviously
x %= 1; // should ...
-1
votes
3answers
71 views
Discarding 4 precision points?
I have a floating point number, but I only want the number till 2 points of precision. How do I get this in C++?
float foo(float num) { // num=1234.567891
// code
return num2; // ...
1
vote
1answer
76 views
Why two similar floating-point computation are giving two different results?
The following code realizes the same computation by either using an Eigen vector as a container only or a simple C-array. It produces a closed but not bit-to-bit equivalent result.
The final ...
2
votes
3answers
132 views
How to test whether a float is an integer “within machine precision”?
The brief version of my question is:
What's considered "best practice" for deciding when a floating point number x and Math.round(x) may be considered equal, allowing for loss of precision from ...
-1
votes
2answers
226 views
How to get precise low p-value in R (from F test)
I'm computing a p-value from an F-test in R, and it seems to have trouble displaying anything lower than 1e-16. E.g., for F values from 80 to 90 with degrees of freedom 1,200:
> 1-pf(80:90,1,200)
...
0
votes
1answer
36 views
bcadding very small floats gives 0
Thanks to stack, I learned about floating point imprecision, so I went over to the bc functions.
That works great on "normal" floats, but with extremely small floats, say 10^-10 types, bcadd always ...
0
votes
2answers
115 views
MIL-STD-1750A to Decimal Conversion Examples
I am looking at some examples in the 1750A format webpage and some of the examples do not really make sense. I have included the 1750A format specification at the bottom of this post in case anyone ...
0
votes
1answer
72 views
adjusting floats to maintain high precision
I am writing some Python code that requires a very high degree of precision. I started to use Numpy float64, but that didn't work as required, and I then started using the "Decimal" module, which then ...
3
votes
3answers
284 views
Why does scipy.stats.nanmean give different result from numpy.nansum?
>>> import numpy as np
>>> from scipy import stats
>>> a = np.r_[1., 2., np.nan, 4., 5.]
>>> stats.nanmean(a)
2.9999999999999996
>>> ...
4
votes
3answers
332 views
float vs double (in Java)
Is there ever a case where these two methods would return different values given the same inputs?
int compare1(float a, float b)
{
return Double.compare(a, b);
}
int compare2(float a, float b)
{
...
1
vote
2answers
128 views
Float precision on XNA
I'm using Visual Studio 2010 Ultimate, working on .Net framework 4.
The type of groundControlPoint and worldPosition is Vector2, from XNA framework.
I know every debugger uses his own precision ...
3
votes
3answers
349 views
What is a good way to round double-precision values to a (somewhat) lower precision?
My problem is that I have to use a thrid-party function/algorithm which takes an array of double-precision values as input, but apparently can be sensitive to very small changes in the input data. ...
2
votes
1answer
142 views
To what precision does perl print floating-point numbers?
my $num = log(1_000_000) / log(10);
print "num: $num\n";
print "int(num): " . int($num) . "\n";
print "sprintf(num): " . sprintf("%0.16f", $num) . "\n";
produces:
num: 6
int(num): 5
sprintf(num): ...
1
vote
1answer
101 views
Chudnovsky algorithm produces -nan
I'm trying to implement the Chudnovsky algorithm for calculating pi.
Here is my implementation:
int fact(int n)
{
if(n<=1)
return 1;
else
return fact(n-1)*n;
}
double ...







