For questions related to numerical precision in programming.
1
vote
3answers
64 views
C programming: translated function from MATLAB to C gives slightly (but significantly) different result
I have been trying to translate some MATLAB code into C but one particular function is giving me different results between the two languages. I don't think it is a precision error because the values ...
2
votes
2answers
39 views
R's Format function returning an odd result
Why does
format(4444444444444444444,scientific=FALSE)
return "4444444444444444672"?
I thought it might be an integer precision thing, but this number is relatively small. Thanks!
I'm running R ...
4
votes
2answers
49 views
Printing int values with a user determined padding? [duplicate]
I'm pretty sure there's no way to do this, but I was wondering, so here goes...
Say I get several int values from the user, and I know for a fact that the 1st
value is the largest.
Any way I can use ...
0
votes
2answers
46 views
C Function argument value changing by itself
I have a simple function that, after it has returned, the values of the array a[] (passed as argument) are changed. The problem is that they are not even written on in the function, only read - ...
0
votes
0answers
25 views
Implement sound Interval Arithmetic
How to implement sound Interval Arithmetic in Java?
I need to implement a sound interval arithmetic with java.
Let's take the type double as example, we use an iterval [0.09999....005, ...
1
vote
3answers
63 views
Is there a way to set the Floating-Point Unit's rounding mode in Java?
I want to know how to round a floating-point number to a machine floating number(for example double).
The number "0.01111116" cannot be represented by machine floating point, in some rounding mode, ...
7
votes
2answers
128 views
Understanding of Guru of the Week #67: Double or Nothing
Recently, I was reading the post: Double or Nothing from GOTW by Herb Sutter
I am a little confused with the explanation of the following program:
int main()
{
double x = 1e8;
while( x ...
1
vote
3answers
40 views
Multiply long or BigInteger by double without loss of precision
I want to multiply a high precision integer (long or BigInteger) by a small double (think about something > 0 and < 1) and get the arithmetically rounded integer (long or BigInteger) of the exact ...
0
votes
1answer
32 views
How to set output precision to float in c
How to set a precision of mantissa in C?
I want my program to print exactly 6 digits after the dot.
I tried using %2.6le to indicate that I want 6 digits, but then the program prints values like
...
0
votes
0answers
26 views
How to print double or float number without losing precision?
When I want to output a double (or float) number, such as 4.999999999999999999999, which is over the double precision (15 digits), the result of double is 5.000000000000000 and the result of float is ...
5
votes
1answer
57 views
C++ streamsize prec = cout.precision(3) - How does it work?
I am kind of newbie in using c++. I have a quick question, probably a dumb question.
streamsize prec = cout.precision(3);
As I understand correctly this declaration works like that: set the cout ...
3
votes
1answer
53 views
Improve precision on variables defined by integer quotient
Say I have the following program:
program derp
implicit none
integer, parameter :: ikind = selected_real_kind(18)
real (kind = ikind) :: a = 2.0 / 3.0
print*, a
end program derp
The ...
0
votes
1answer
23 views
JavaScript: Trim .toPrecision() trailing zeros
I am creating an online calculator using JavaScript.
I have this to work out a calculation:
eval(expression).toPrecision(10);
This produces the right output in almost all cases. E.g.
...
-4
votes
0answers
35 views
Why is 0.1 + 0.2 !=== 0.3 ? (Javascript) [duplicate]
I don't understand floating point rounding errors - for example, why is 0.1 + 0.2 actually 0.30000000000001 and not 0.3 exactly?
3
votes
2answers
59 views
getting the average, p95 and p99 of a stream of data
I have incoming data and I want to compute the average, 95th and 99th percentile of that data - I am most interested in the last 1000 values. At any time, I'd like to query this object to get any of ...
0
votes
1answer
41 views
3D coordinate rotation lacking Precision in perspective 2D
So I wrote a Program to draw and display a 3D cube, using these simple conversion formula's as used in isometric graphs:
x2 = x*cos(30) - y*cos(30)
y2 = x*sin(30) + y*sin(30) + z
The coordinate ...
0
votes
1answer
28 views
Exact measurement of translation and rotation of marcer objects using OpenCV/EmguCV
I would like to measure the displacement of an object between two images. The displacement can be anything in the image plane. The result should give the displacement, if possible in sub pixel ...
1
vote
2answers
60 views
Java double addition rounding off
In java following expression results into
new Double(1.0E22) + new Double(3.0E22) = 4.0E22
but
new Double(1.0E22) + new Double(4.0E22) = 4.9999999999999996E22
I was expecting it to be 5.0E22. ...
0
votes
0answers
21 views
High precision with large numbers (c++,matlab)
I'm facing the following problem regarding large floating point arithmetics (probably, quite newbie question)
I'm trying to calculate a norm (length) of three vectors:
\vec{d} = \vec{a} + ...
1
vote
1answer
70 views
How to easily switch between single and double precision in CUDA?
When debugging developing and debugging, I would like to run my code with double precision. However, once I know it's working, I'd like the option to run my code using single precision (i.e. floats) ...
0
votes
0answers
26 views
Parsing base 2^32 numbers to decimal (For theorically unlimited numbers)
I am working on a C++ problem where I have to print my class.
My class stores and does arithmetic and logic operations on theorically unlimited long numbers. It has an array of unsigned ints to hold ...
1
vote
2answers
33 views
How are non integer images represented?
Intro
To the computer, digital grayscale images are represented as integer matrices where the maximim number (which is dependent on the integer precision) represents black an 0 is white.
Here is a ...
1
vote
2answers
66 views
Computer precision: when should I have to worry about it?
In C++ programming, when do I need to worry about the precision issue? To take a small example (it might not be a perfect one though),
std::vector<double> first (50000, 0.0);
...
0
votes
1answer
41 views
Saving float number in SQLite issue?
I tried saving some floats into SQLite tables (for the first time) but the stored values are different from what I wanted to save. They were nearly exactly the numbers I saved. This requires me to ...
3
votes
1answer
71 views
Floating-point equality test and extra precision: can this code fail?
The discussion started under my answer to another question. The following code determines machine epsilon:
float compute_eps() {
float eps = 1.0f;
while (1.0f + eps != 1.0f)
eps /= 2.0f;
...
0
votes
1answer
32 views
Float Precision and Removing Rounding Errors in Scheme
I have a procedure that returns a float to three decimal places.
>(gpa ’(A A+ B+ B))
3.665
Is there any way to round this to 3.67 in Scheme?
I'm using SCM version 5e7 with Slib 3b3, the ...
1
vote
2answers
113 views
Show two digits after decimal point in c++
Already similar topic is discussed in the forum. But I have some different problem in following code:
double total;
cin>>total
cout<<fixed<<setprecision(2)<<total;
If I give ...
0
votes
2answers
52 views
h2 default DECIMAL precision performance
When I create DECIMAL column with default precision setting, in H2 web console this column is defined as DECIMAL(65535, 32767), command "show columns from ..." gives me DECIMAL(65535).
Decimal data ...
0
votes
1answer
24 views
Bound the maximal possible arithmetical error of primitive math. opperations
Is there any possibility to calculate the highest error of the sum or substraction of two numbers with 7 fractional digits?
For example:
a=#.#######
b=#.#######
a+/-b = #.####### + / - epsilon
a ...
0
votes
0answers
25 views
Drawing with high precision alpha blending
I need to blend together about 1 million semi-transparent rectangles, while being able to manage transparency accuracy by increment of 1e-6.
Typically, if my 1 millions rectangle would be drawn on ...
1
vote
4answers
58 views
Java precise calculations - options to use
I am trying to establish some concise overview of what options for precise caluclations we have in JAVA+SQL. So far I have found following options:
use doubles accepting their drawbacks, no go.
use ...
2
votes
3answers
208 views
ode integration in python versus mathematica results
Edit:
So I found out that NDSolve for ODE is using Runge Kutta to solve the equations.
How can I use the Runge Kutta method on my python code to solve the ODE I have below?
From my post on text files ...
0
votes
3answers
69 views
Convert Java Number to BigDecimal : best way
I am looking for the best way to covert a Number into a BigDecimal.
Is this good enough ? :
Number number;
BigDecimal big = new BigDecimal(number.toString());
Can we loose precision with ...
2
votes
3answers
61 views
numpy.mean precision for large arrays
I do not understand why casting a float32-Array to a float64-Array changes the mean of the array significantly.
import numpy as n
a = n.float32(100. * n.random.random_sample((10000000))+1000.)
b = ...
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
1answer
41 views
Integer value doesn't compare equal to a float in Matlab
I'm trying to compare two values
y = 1
ye = 1.0000
If I compare in Matlab for example y == ye I get 0?!
The data in y is read from a text file...could that have something to do with this?
2
votes
1answer
50 views
Confusion about Precision and Recall in Spam detection
I' m doing a project to detect spam accounts according to a tutorial. Two labels —— "Spam" and "Not spam" are used to train and test. Classification have been finished and I'm heading for evaluation.
...
0
votes
3answers
123 views
Get DateTime.Now with milliseconds precision
how can I exactly construct time stamp of actual time with milliseconds precision? I need something like 16.4.2013 9:48:00:123. Is this possible? I have application, where I sample values 10 times per ...
3
votes
1answer
80 views
Qt binary reading error in qDatastream
I am reading a binary file that is a produced by a sensor. I am having problem in reading float with different precision (32 or 64). I can read them in MATLAB (64 bit version) but Qt (32 bit version ...
0
votes
1answer
82 views
Java round double and get a double
I have seen numerous examples of rounding using DecimalFormat and NumberFormat but these return Strings when used. Yes I know that one can use parse to get the number back, however this adds ...
1
vote
1answer
58 views
Taking logs and adding versus multiplying
If I want to take the product of a list of floating point numbers, what's the worst-case/average-case precision lost by adding their logs and then taking exp of the sum as opposed to just multiplying ...
0
votes
1answer
55 views
PHP Scientific Notation Shortening
I'm looking for an elegant solution here (if one exists).
I've got a bunch of numbers, with an arbitrary amount of decimal places. I want to force the number to use 8 decimal places if it's got more ...
1
vote
1answer
79 views
SQL Server decimal scale length - can be or has to be?
I have really simply question about DECIMAL (and maybe NUMERIC) type in SQL Server 2008 R2.
MSDN said:
(scale)
The maximum number of decimal digits that can be stored to the right of the ...
1
vote
1answer
49 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
...
1
vote
2answers
66 views
Does increasing the machine precision automatically raise terms in series expansion?
I was wondering if increasing the machine precision from float to double in C automatically raise terms in series expansion e.g. trigonometric functions ?
This and my other questions on stack ...
2
votes
2answers
112 views
Java: Math.random() Max Value (double just less than 1)
I've been a little curious about this. Math.random() gives a value in the range [0.0,1.0). So what might the largest value it can give be? In other words, what is the closest double value to 1.0 that ...
0
votes
2answers
121 views
Increase %e precision with /usr/bin/time shell command (Linux)
When I run the time command in shell time ./myapp I get an output like the following:
real 0m0.668s
user 0m0.112s
sys 0m0.028s
However,when I run the command \time -f %e ./myapp I lose ...
0
votes
0answers
119 views
Getting better precision from math functions - C++
I'm trying to create a class of complex numbers and some matching functions. Here is the implementation of the exp function :
complex exp(complex z){
complex i(0,1);
return ...
0
votes
3answers
68 views
Test Number For Maximum Precision In Java
I would like to test a double for a maximum percision of 3 or less. What is the best way to do this in Java?
20.44567567 <- Fail
20.444 <- Pass
20.1 <- Pass
20 <- Pass
0
votes
2answers
62 views
How to format a double with minimum precision
I have what I think is a simple problem.
I have a collection of doubles that I want to display in a listbox.
At a minimum, it should display three decimal places, however, if there are more than three ...






