Tagged Questions
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
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
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 ...
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
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
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 ...
0
votes
0answers
42 views
How to achieve high precision double operation [duplicate]
#include <stdio.h>
#include <iostream>
int main()
{
double a = -0.693176;
double b = -0.00722781;
double result = a - b;
std::cout << result;
return 0;
}
In ...
5
votes
2answers
59 views
Specializing a java class for both double and float precision [closed]
I was wondering could anyone help me with providing options for both double and float precision for a class please?
I am working with Java3D and from the API specification for Point3d and Point3f, ...
1
vote
1answer
80 views
Double precision?
I have a situation where i'm sending a number to a method, it divides that number into 6, and returns a List with the number 6 divided into n number of items. I'm pulling the dividing number from a ...
0
votes
2answers
80 views
Precision lost when storing CLLocationDegrees in MySQL
I'm working on a little app that stores Placemarks specified by iOS devices, into a MySQL backend. When a device saves a new Placemark, it is INSERTed into the DB and the newly generated ID is sent ...
0
votes
2answers
101 views
How can I ensure decimal precision in mongodb geospatial coordinates?
I need to save longitude/latitude coordinates in mongodb and I'm not sure how to store them. No examples I see online show conversion to string or splitting up the decimal parts into 2 ints. I'm ...
-2
votes
2answers
126 views
Visual Express 2010 double variable precision [closed]
I have just started out coding in c++ but have quite a bit of previous experience with MATLAB and MySql. I am trying to calculation some compounding numbers hence accuracy is key. I have tried to do ...
0
votes
1answer
122 views
Adjusting for precision when casting a uint64_t to a double
I have a method that returns a string representation of time in the following format: _HH:MM:SS.sss the method takes an uint64_t time in microseconds as an arg. I can divide the hours and minutes out ...
0
votes
1answer
321 views
C++ code to convert a fraction to binary
I just wrote the following C++ code in order to convert a fractional number into its corresponding binary format.
double get_decimal_part(double num) {
long x = static_cast<long>(num);
...
1
vote
1answer
696 views
How to set precision of double values to be of the form ##.## at ALL times?
I am currently trying to create a timer for an android game which has the form ##.## at all times.
The issue I am having is that if my timer reaches say 23.50, it will set it as 23.5
So, I am trying ...
1
vote
4answers
135 views
Double precision comparison in c fails [duplicate]
Possible Duplicate:
Why “for( i = 0.1 ; i != 1.0 ; i += 0.1)” doesn’t break at i = 1.0?
I have a numeric (real) interval [x, y]. I must iterate through it using something like:
nr = 0;
for ...
0
votes
2answers
265 views
print double with precision 4 using cout [duplicate]
Possible Duplicate:
Convert a double to fixed decimal point in C++
For example , I have double a = 0 and I want to print him as 0.0000 .
I tried -
cout.precision(4) ;
...
-3
votes
1answer
309 views
c# double Range
I created a program that needs to get factorials of large numbers, but by the time I try to calculate 35! it gives me 0. I'm using type double which should be able to hold it. What is going on ...
3
votes
1answer
123 views
Lowest double positive value - can cout change its value?
Consider two following pieces of code - the only difference between them is a single cout which prints the value eps:
http://ideone.com/0bEeHz - here the program enters and infinite loop since after ...
1
vote
6answers
138 views
Reducing the digits of a Double in C++
I need a function that reduces the precision (number of digits) of my doubles.
I need it for calculation, not for output on the screen.
What I have so far, is:
double setDigits(double _number, ...
0
votes
1answer
212 views
Convert double to string with more than 5 decimal digit precision
At first I used boost's lexical_cast to do this. But due to the way C++ represents doubles/floats, when I converted 5.1 to a string it would give me 5.0999999 or something to that extent. So, I ...
0
votes
1answer
328 views
digits after decimal point for double variables/calculations in C++ [duplicate]
Possible Duplicate:
Writing numbers to a file with more precision - C++
While storing latitude/longitude values as double, I keep ending up with variables that contain trimmed numbers -e.g. ...
0
votes
0answers
29 views
Is it possible to add numbers in the log domain without losing accuracy?
I have a list of probabilities, but they are too small to be stored directly as doubles, so I am storing their log. This is fine as long as all I want to do is to multiply them (just add the logs), ...
1
vote
1answer
104 views
Why are the numbers I input only read to 6 significant figures?
I am trying to run the following program and it works but when I enter a value that is more than 6 decimal places it keeps getting rounded/truncated e.g. 2.999999 --> 3. How do I set it so it stops ...
3
votes
3answers
142 views
Setting the precision of a double without using stream (ios_base::precision)
Is there a way to do this without using the stream? For example, something like this:
double a = 6.352356663353535;
double b = a.precision(5);
instead of:
double a = 6.352356663353535;
...
4
votes
3answers
204 views
Is it okay to check a double “d < 0”?
I'm writing a full double to float function for the Arduino (irrelevant, but I couldn't find any "proper" ones) and I do this check:
if (d < 0) {
d *= -1;
bin += "-";
}
I know because of ...
0
votes
2answers
233 views
fprintf() prints 0 instead of full float value (conversion issue?)
I'm having problems with some sample code I got from Boulanger and Lazzarini's 'The Audio Programming Book'. It's supposed to generate values for a sine wave, but when I run it I'm just getting values ...
0
votes
0answers
84 views
Determine the double precision of an input number
I have a question which is in many ways similar to this question: Determine the decimal precision of an input number
There is a great way defined for counting the number of places after the decimal ...
3
votes
2answers
133 views
Weird rounding in C [duplicate]
Possible Duplicate:
C programming division
in the following code example the result should yield 130.0 yet once compiled, I get 129.0. Is the right hand side not producing enough precision ...
0
votes
4answers
1k views
Converting a precision double to a string
I have a large number in c++ stored as a precise double value (assuming the input 'n' is 75): 2.4891e+109
Is there any way to convert this to a string or an array of each individual digit?
Here's my ...
3
votes
2answers
785 views
Why does printf("%.6g, <value>) ignore zeroes after decimal point?
I want to print maximum of 6 digits after the decimal point, so I used the following:
printf("%.6g",0.127943989);
the output of printf is 0.127944 which is correct, but when I tried this:
...
0
votes
1answer
159 views
Nicest way to solve stringified floating rounding issue through algorithm? (Java, JEval)
I have an output operation from JEval that is an string with the float imprecision, something like "1.56700000001". I need some approach to hold the maximum precision but correcting the float ...
-1
votes
5answers
191 views
Dividing by 100 precision
I'm working on something and I've got a problem which I do not understand.
double d = 95.24 / (double)100;
Console.Write(d); //Break point here
The console output is 0.9524 (as expected) but if I ...
0
votes
6answers
429 views
C# loss of precision when dividing doubles
I know this has been discussed time and time again, but I can't seem to get even the most simple example of a one-step division of doubles to result in the expected, unrounded outcome in C# - so I'm ...
1
vote
4answers
815 views
How do I set precision while using type double / float in C++
In my previous question Comparing a double and int, without casting or conversion, I found out how the the difference between two doubles was tripping the comparison.
I came accross the method ...
0
votes
1answer
920 views
QString::toDouble() giving me double with wrong precision
I have a QString myNumber containing "09338.712001". When I do:
myNumber.toDouble();, it returns 9338.71, but I want the double to be the original value, which is 09338.712001. Does anyone know how ...
4
votes
5answers
222 views
how do i enforce precision on a string containing a double value in c++
Sample input string:
char *str = "12345.567675";
And the desired output if I need the precision of 3 places after decimal point:
str = "12345.568";
Is there a way to do this without converting ...
7
votes
7answers
3k views
Equals operator for zeros (BigDecimal / Double) in Java
A few interesting observations w.r.t equals operator on 0 and 0.0
new Double(0.0).equals(0) returns false, while new Double(0.0).equals(0.0) returns true.
...
2
votes
2answers
387 views
How many bits of precision for a double between -1.0 and 1.0?
In some of the audio libraries I've been looking at, a sample of audio is often represented as a double or a float with a range of -1.0 to 1.0. In some cases, this easily allows analysis and ...
0
votes
3answers
737 views
Double precision: Multiplication of big numbers
I have some simple operations (subtraction, multiplication) with big numbers (integers). They are so big, that I have to store them into long double variable. That is fine, but for some cases ...
5
votes
2answers
864 views
Extended double precision
Is it possible to obtain more than 16 digits with double precision without using quadruple? If it is possible, does it depend on compiler or something else? Because I know someone said he was working ...
6
votes
1answer
124 views
Using '/' with long double?
I am trying to understand why using '/' with long double in the following way leads to a 0.000000 value while the same code with double does not
double d = (double)total_results / ...
0
votes
3answers
172 views
Why do these two code snippets produce different results? (Float, Double precision)
I am only beginning to learn C++ and have been messing around with float and double values. Below are two code snippets that seem to me to be doing the same thing but give different results. What am ...
0
votes
3answers
658 views
How to control double precision computing to avoid rounding errors in C++ linux x86_64?
In a C++ code on linux x86_64, I need to double precision computing (+ or -).
26.100000000000001 - 26 + 0.10000000000000001
I got:
0.20000000000000143
I want to get 0.2.
here, the display ...
4
votes
3answers
294 views
Is it safe to test a float for 0.0 equality?
I know it's dangerous to test floats for equality due to precision errors but is it safe to test for zero? I can think of some cases, for example in optimizing special cases in algorithms, where you ...
1
vote
2answers
368 views
How to use set up decimal precision for all double type numbers in a large C++ program
How to use set up decimal precision for all double type numbers in a large C++ program.
I can use stringstream and setprecision(n) to do it but I have to do it one by one for every double number in ...
-1
votes
3answers
566 views
JAVA precision during division and multiplication alterneting process [duplicate]
Possible Duplicate:
How to resolve a Java Rounding Double issue
Please Help,
I programm some calculator in JAVA. I use double type. Double has 15 digits after the decimal point. I have ...
0
votes
1answer
219 views
Total numbers represented in IEEE single precision and double precision
How many total numbers can be represented in IEEE single precision format and double precision format?
single precision - 1 sign bit, 8 exponent , 23 bit mantissa
double precision - 1 sign bit, 11 ...
3
votes
1answer
512 views
Java float to double - upper and lower bounds?
As most here will know, double -> float incurs a loss in precision. This means, multiple double values may be mapped to the same float value.
But how do I go the other way? Given a normal (I'm not ...
1
vote
2answers
2k views
double precision in JAVA
I have to round off my result to the nearest fo 0.05 ie(6.34 to 6.35 and 6.37 to 6.4)
So I created myRound function.
When I wrote test to see the function, Its fails.
double rate=14.99;
...


