Double precision floating-point format is a 64 bit data type used for storing fractional numbers.

learn more… | top users | synonyms

3
votes
2answers
3k views

JTextFields on top of active drawing on JPanel, threading problems

Has anyone ever tried to use Swing to construct a proper multi-buffered rendering environment on top of which Swing user interface elements can be added? In this case I have an animating red ...
33
votes
18answers
47k views

Retain precision with Doubles in java [duplicate]

Possible Duplicate: Why do I see a double variable initialized to some value like 21.4 as 21.399999618530273? public class doublePrecision { public static void main(String[] args) { ...
242
votes
8answers
55k views

decimal vs double! - Which one should I use and when?

I keep seeing people using doubles in C#. I know I read somewhere that doubles sometimes lose precision. My question is when should a use a double and when should I use a decimal type? Which type is ...
61
votes
9answers
57k views

Moving decimal places over in a double

So I have a double set to equal 1234, I want to move a decimal place over to make it 12.34 So to do this I multiply .1 to 1234 two times, kinda like this double x = 1234; for(int i=1;i<=2;i++) { ...
131
votes
11answers
114k views

Checking if a double (or float) is nan in C++

is there an isnan() function? p.s. I'm in mingw (if that makes a difference) UPDATE Thanks for the responses I had this solved by using isnan() form <math.h>, which doesn't exist in ...
5
votes
3answers
2k views

How To Represent 0.1 In Floating Point Arithmetic And Decimal

I am trying to understand floating point arithmetic better and have seen a few links to 'What Every Computer Scientist Should Know About Floating Point Arithmetic' I still don't understand how a ...
11
votes
13answers
15k views

Comparing double values in C#

I'm using C#. I've a double variable called x. In the code, x gets assigned a value of 0.1 and I check it in an 'if' statement comparing x and 0.1 if(x==0.1) { ---- } Unfortunately it does not ...
12
votes
9answers
24k views

Double precision problems on .NET

I have a simple C# function: public static double Floor(double value, double step) { return Math.Floor(value / step) * step; } That calculates the higher number, lower than or equal to "value", ...
5
votes
5answers
5k views

how do I validate user input as a double in C++?

How would I check if the input is really a double? double x; while (1) { cout << '>'; if (cin >> x) { // valid number break; } else { // not a ...
75
votes
11answers
76k views

How to nicely format floating types to String?

An 64-bit double can represent integer +/- 253 exactly Given this fact I choose to use a double type as a single type for all my types, since my largest integer is unsigned 32-bit. But now I have to ...
39
votes
7answers
19k views

MySQL pagination without double-querying?

I was wondering if there was a way to get the number of results from a MySQL query, and at the same time limit the results. The way pagination works (as I understand it), first I do something like ...
37
votes
12answers
80k views

How do I convert a double into a string in C++?

I need to store a double as a string. I know I can use printf if I wanted to display it, but I just want to store it in a string variable so that I can store it in a map later.
19
votes
5answers
58k views

Convert double to string C++? [duplicate]

Possible Duplicate: How do I convert a double into a string in C++? I want to combine a string and a double and g++ is throwing this error: main.cpp: In function ‘int main()’: main.cpp:40: ...
6
votes
4answers
18k views

How can I convert a byte array into a double and back?

For converting a byte array to a double I found this: //convert 8 byte array to double int start=0;//??? int i = 0; int len = 8; int cnt = 0; byte[] tmp = new byte[len]; for (i = ...
1
vote
3answers
1k views

Java double precision sum trouble

i would like to know why I get this error. (this is Display log of Eclipse debug) var (double) 2.8 tot.getIva() (java.lang.Double) 0.17 var+tot.get() (double) 2.9699999999999998 I ...
13
votes
1answer
5k views

Issue with float and double data types in objective C

When using double or float data type in an iPhone app, I am running into problems with ">=" and "<=" comparisons because I realize that when a variable is assigned a number entered with one decimal ...
28
votes
9answers
26k views

Double.TryParse or Convert.ToDouble - which is faster and safer?

My application reads an Excel file using VSTO and adds read data to a StringDictionary. It adds only data that is a number with few digits (1000 1000,2 1000,34 - comma is a delimiter in Russian ...
6
votes
8answers
2k views

Why can't I return a double from two ints being divided

Relatively new to coding and have an issue regarding basic division. How come to following doesn't return the answer I thought it would: int a=7; int b=3; double c=0; c=a/b; I would have put money ...
2
votes
4answers
2k views

problem formatting fields in a JTable - differences between Integer and Double

Update Confirmed as a bug on JTable can't format given Object as Number when columnClass is Double (bug ID: 7051636). Feel free to vote for it, or if if you have an alternate (better) work-around, ...
29
votes
7answers
47k views

Convert float to double without losing precision

I have a primitive float and I need as a primitive double. Simply casting the float to double gives me weird extra precision. For example: float temp = 14009.35F; ...
19
votes
13answers
47k views

std::string to float or double

i'm trying to convert std::string to float/double. I tried: std::string num = "0.6"; double temp = (double)atof(num.c_str()); But it always returns zero. Any another ways? You could see debugger ...
2
votes
3answers
397 views

Why don't operations on double-precision values give expected results?

System.out.println(2.14656); 2.14656 System.out.println(2.14656%2); 0.14656000000000002 WTF?
57
votes
6answers
2k views

How many double numbers are there between 0.0 and 1.0?

This is something that's been on my mind for years, but I never took the time to ask before. Many (pseudo) random number generators generate a random number between 0.0 and 1.0. Mathematically there ...
25
votes
4answers
12k views

Conversion of a decimal to double number in C# results in a difference

Summary of the problem: For some decimal values, when we convert the type from decimal to double, a small fraction is added to the result. What makes it worse, is that there can be two "equal" ...
20
votes
3answers
8k views

Why doesn't Java throw an Exception when dividing by 0.0?

I have code to calculate the percentage difference between 2 numbers - (oldNum - newNum) / oldNum * 100; - where both of the numbers are doubles. I expected to have to add some sort of checking / ...
14
votes
6answers
780 views

next higher/lower IEEE double precision number

I am doing high precision scientific computations. In looking for the best representation of various effects, I keep coming up with reasons to want to get the next higher (or lower) double precision ...
13
votes
5answers
31k views

round double to two decimal places in java

ok this is what I did to round a double to 2 decimal places, amount = roundTwoDecimals(amount); public double roundTwoDecimals(double d) { DecimalFormat twoDForm = new DecimalFormat("#.##"); ...
10
votes
7answers
1k views

Float addition promoted to double?

I had a small WTF moment this morning. Ths WTF can be summarized with this: float x = 0.2f; float y = 0.1f; float z = x + y; assert(z == x + y); //This assert is triggered! (Atleast with visual ...
10
votes
5answers
9k views

What's the best way to compare Double and Int?

The following code in C# doesn't work: int iValue = 0; double dValue = 0.0; bool isEqual = iValue.Equals(dValue); So, the question: what's the best way to compare Double and Int?
5
votes
2answers
867 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 ...
3
votes
3answers
2k views

PHP static variables in double quotes

How can I get PHP to evaluate a static variable in double quotes? I want to do something like this: log("self::$CLASS $METHOD entering"); I've tried all sorts of {} combos to get the variable ...
3
votes
3answers
1k views

floating point precision

I have a program written in C# and some parts are writing in native C/C++. I use doubles to calculate some values and sometimes the result is wrong because of too small precision. After some ...
0
votes
3answers
162 views

Double calculation producing odd result

I have 2 numbers stored as Double, 1.4300 and 1.4350. When I subtract 1.4350 - 1.4300, it gives me the result: 0.0050000000000001155. Why does it add 1155 to the end and how can I solve this so that ...
26
votes
14answers
8k views

Decimal vs Double Speed

I write financial applications where I constantly battle the decision to use a double vs using a decimal. All of my math works on numbers with no more than 5 decimal places and are not larger than ...
38
votes
8answers
46k views

C#: How do I parse a string with a decimal point to a double?

I guess this is a very easy question, but I wasn't able to find a question with Google or the MSDN examples. I want to parse a string like "3.5" to a double. However, double.Parse("3.5") yields ...
24
votes
6answers
66k views

C# Double - ToString() formatting with two decimal places but no rounding

How do I format a Double to a String in C# so as to have only two decimal places? If I use String.Format("{0:0.00}%", myDoubleValue) the number is then rounded and I want a simple truncate without ...
15
votes
9answers
4k views

How to print out the memory contents of a variable in C?

Suppose I do a double d = 234.5; I want to see the memory contents of d [the whole 8 bytes] How do I do that?
14
votes
5answers
13k views

DOUBLE vs DECIMAL in MySQL

OK, so I know there are tons of articles stating I shouldn't use DOUBLE to store money on a MySQL database, or I'll end up with tricky precision bugs. The point is I am not designing a new database, I ...
14
votes
1answer
885 views

Difference among Double.MIN_NORMAL and Double.MIN_VALUE

May I know what is the difference among Double.MIN_NORMAL (introduced in 1.6) and Double.MIN_VALUE? JavaDoc of Double.MIN_NORMAL: A constant holding the smallest positive normal value of type ...
11
votes
4answers
556 views

Why doesn't this code demonstrate the non-atomicity of reads/writes?

Reading this question, I wanted to test if I could demonstrate the non-atomicity of reads and writes on a type for which the atomicity of such operations is not guaranteed. private static double _d; ...
10
votes
4answers
5k views

How to print a double with full precision on iOS?

Test case: NSLog(@"%f", M_PI); NSLog(@"%@", [NSString stringWithFormat:@"%f", M_PI]); NSLog(@"%@", [NSNumber numberWithDouble:M_PI]); Results: 3.141593 3.141593 3.141592653589793 ...
4
votes
3answers
4k views

how can I extract the mantissa of a double

I would like to store in a variable the mantisssa of a double I have post a code to get the binary representation of a double : click here What should I change to isolate the mantissa
0
votes
3answers
542 views

double arithmetic and equality in Java

Here's an oddity (to me, at least). This routine prints true: double x = 11.0; double y = 10.0; if (x-y == 1.0) { // print true } else { // print false } But this routine prints false: ...
6
votes
4answers
4k views

How to cast from List<Double> to double[] in Java?

I have a variable like that: List<Double> frameList = new ArrayList<Double>(); /* Double elements has added to frameList */ How can I have a new variable has a type of double[] from ...
2
votes
7answers
234 views

Why do simple doubles like 1.82 end up being 1.819999999645634565360? [duplicate]

Possible Duplicate: Why does Visual Studio 2008 tell me .9 - .8999999999999995 = 0.00000000000000055511151231257827? c++ Hey so i'm making a function to return the number of a digits in a ...
2
votes
5answers
2k views

Division in c# not going the way I expect

Im trying to write something to get my images to show correctly. I have 2 numbers "breedtePlaatje" and "hoogtePlaatje". When i load those 2 vars with the values i get back "800" and "500" i expect ...
1
vote
4answers
689 views

converting a string into a double

I am looking for a way to get floating point input from a user. My way of going about this is to use a self-made getstrn function and plug that into another function which would convert the string ...
0
votes
4answers
4k views

C++ double precision and rounding off

I have the following problem: double a = 6.005; double b = 5.995; I want to set precision of doubles 2 digits after point, for example double c = a+b;// I would like to get 11.99 not 12.00. How ...
15
votes
4answers
10k views

Which sql server data type best represents a double in C#?

Is it money, float, real, decimal, _____ ?
12
votes
8answers
4k views

double or float,which is faster?

i am reading "accelerated c++". i found one sentence which states "sometimes double is faster in execution than float in c++". After reading sentence i got confused about float and double working. ...

1 2 3 4 5 6