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

learn more… | top users | synonyms

81
votes
8answers
17k 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 ...
64
votes
10answers
57k 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 ...
47
votes
6answers
1k 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 ...
43
votes
8answers
51k 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++) { ...
33
votes
5answers
18k 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 ...
23
votes
10answers
7k views

Are doubles faster than floats in c#?

I'm writing an application which reads large arrays of floats and performs some simple operations with them. I'm using floats because I thought it'd be faster than doubles, but after doing some ...
20
votes
12answers
5k views

Should I use double or float?

What are the advantages and disadvantages of using one instead of the other in C++?
20
votes
14answers
5k 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 ...
18
votes
5answers
19k 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 ...
17
votes
5answers
25k 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; ...
16
votes
5answers
199 views

Is it better to cast double as decimal or construct “new” decimal from double?

When going from a double to a decimal, presuming my double can be represented as a decimal... Is it more appropriate to cast a double as a decimal: (Explicit Numeric Conversions Table) (Note that ...
16
votes
4answers
1k views

Overuse of fromIntegral in Haskell

Whenever I write a function using doubles and integers, I find this problem where I am constantly having to use 'fromIntegral' everywhere in my function. For example: import Data.List roundDouble ...
16
votes
6answers
695 views

c++ floating point precision loss: 3015/0.00025298219406977296

The problem. Microsoft Visual C++ 2005 compiler, 32bit windows xp sp3, amd 64 x2 cpu. Code: double a = 3015.0; double b = 0.00025298219406977296; //*((unsigned __int64*)(&a)) == ...
16
votes
9answers
5k views

Difference between float and double

I know, i've read about the difference between double precision and single precision etc. But they should give the same results on most cases right ? I was solving a problem on a programming contest ...
16
votes
9answers
11k views

Double.TryParse or Double.Convert - what is faster and more safe?

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 ...
15
votes
7answers
705 views

Portability of binary serialization of double/float type in C++

The C++ standard does not discuss the underlying layout of float and double types, only the range of values they should represent. (This is also true for signed types, is it two's compliment or ...
15
votes
3answers
3k views

Unsigned double in C++?

Why doesn't C++ support unsigned double syntax?
15
votes
5answers
599 views

C# float infinite loop

The following code in C# (.Net 3.5 SP1) is an infinite loop on my machine: for (float i = 0; i < float.MaxValue; i++) ; It reached the number 16777216.0 and 16777216.0 + 1 is evaluates to ...
15
votes
4answers
4k 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" ...
15
votes
5answers
7k 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 ...
15
votes
13answers
41k 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.
14
votes
2answers
534 views

Detecting a negative 0 stored as a double in C++

I am doing some mathematical calculations (trying to convert Matlab code into C++, using VS2010) and I need to be able to tell if at some point I get a negative 0. According to the IEEE standard ...
14
votes
5answers
17k 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 ...
13
votes
2answers
459 views

A Double divided by zero is returning a Divide by Zero error

I am experiencing an unexpected behaviour and was hoping someone could help with some guidance as to what areas to focus an investigation on. I have two methods, one essentially performs a divide by ...
13
votes
5answers
26k views

Convert double to string 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: error: invalid operands of types ‘const char [2]’ and ‘double’ to binary ...
13
votes
18answers
21k views

Retain precision with Doubles in java

public class doublePrecision { public static void main(String[] args) { double total = 0; total += 5.6; total += 5.8; System.out.println(total); } } Which returns 11.399999999999 Okay ...
12
votes
3answers
222 views

why is the Double.parseDouble making 9999999999999999 to 10000000000000000?

why is the Double.parseDouble making 9999999999999999 to 10000000000000000 ? For Example : Double d =Double.parseDouble("9999999999999999"); String b= new DecimalFormat("#.##").format(d); ...
12
votes
9answers
709 views

What's a good way to check if a double is an integer in C#?

I have a variable of type double and am wanting to check whether it is an integer. At the moment I have public bool CheckIfInteger(double number) { return number.ToString().Contains(".") == ...
12
votes
3answers
1k 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 / ...
12
votes
9answers
1k 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?
11
votes
7answers
1k 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. ...
11
votes
4answers
766 views

Can “System.Math.Cos” return a (float)?

In C# it bugs me how there is no "Math.Cos" function that returns a float. A double is the only value you can get back thus forcing you to cast it to a float. Like so:: {float val = ...
11
votes
7answers
836 views

Quick C question - how to hide leading zero in printf

printf( "%8.2f" , .23 ); It outputs 0.23. How do I get it to simply output .23? Thanks.
10
votes
1answer
142 views
+50

Simulate tearing a double in C#

I'm running on a 32-bit machine and I'm able to confirm that long values can tear using the following code snippet which hits very quickly. static void TestTearingLong() { ...
10
votes
4answers
422 views

What is the best way to separate double into two parts “integer & fraction” in java

I have tried to separate 5.6 (for example) by the following method: private static double[] method(double d) { int integerPart = 0; double fractionPart = 0.0; integerPart = (int) d; ...
10
votes
3answers
492 views

Is reading a double not thread-safe?

Update: I just stumbled upon this in Eric Lippert's answer to another question (he is quoting the spec): Reads and writes of other types, including long, ulong, double, and decimal, as well as ...
10
votes
8answers
528 views

C# - How to intelligently & safely convert a Double to String?

Trying not to repeat myself (to be DRY) here, help me out. =) I have a double which represents a rating / 5. The possible values are: 0, 0.5, 1, 1.5, 2, 2.5, 3, 3.5, 4, 4.5, 5. I want to convert ...
9
votes
5answers
464 views

Why is (long)9223372036854665200d giving me 9223372036854665216?

I know about weird stuff with precision errors, but I can't fathom, Why is (long)9223372036854665200d giving me 9223372036854665216 ?
9
votes
6answers
468 views

Are arithmetic operations on double variables with integer values exact?

Let's say I've got two integer values stored in double variables, e. g.: double x = 100.0; double y = 7.0; May I safely assume that any arithmetic operation on these two double variables that would ...
9
votes
5answers
404 views

Double my money: my framework uses doubles for monetary amounts

I've inherited a project in which monetary amounts use the double type. Worse, the framework it uses, and the framework's own classes, use double for money. The framework ORM also handles ...
9
votes
3answers
3k views

Rounding double values in C#

I want a rounding method on double values in C#. It needs to be able to round a double value to any rounding precision value. My code on hand looks like: public static double RoundI(double number, ...
9
votes
7answers
529 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 ...
9
votes
6answers
790 views

Why does Visual Studio 2008 tell me .9 - .8999999999999995 = 0.00000000000000055511151231257827?

When I type this into the Visual Studio 2008 immediate window: ? .9 - .8999999999999995 It gives me this as the answer: 0.00000000000000055511151231257827 The documentation says that a double has ...
9
votes
3answers
3k views

Round to nearest five C#

I'm using C# and I need to round a double to nearest five. I can't find a way to do it with the Math.Round function. How can I do this? What I want: 70 = 70 73.5 = 75 72 = 70 75.9 = 75 69 = 70 and ...
9
votes
4answers
2k views

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

Is it money, float, real, decimal, _____ ?
9
votes
4answers
440 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 ...
9
votes
6answers
4k views

Double.Parse - Internationalization problem

This is driving me crazy. I have the following string in a ASP.NET 2.0 WebForm Page string s = "0.009"; Simple enough. Now, if my culture is Spanish - which is "es-ES" - and I try to convert the ...
9
votes
9answers
18k 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 ...
9
votes
4answers
9k views

How to create an NSMutableArray of floating point values

I'm new to Objective-C and iPhone development, and I'm trying to store floating-point values in an NSMutableArray, but when I do I get an error saying "incompatible type for argument 1 of 'addObject". ...
8
votes
5answers
182 views

Why is the last number wrong?

Why is only the last number wrong in the output this code: public class Test { public static void main(String[] args) { System.out.println("Hello world"); System.out.println("I ...

1 2 3 4 5 21