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

learn more… | top users | synonyms

1
vote
3answers
20 views

Ignoring letters when parsing a double from a line in a file

long time lurker, first time poster. I am trying to import some data from a file line by line. One specific line I was to read from may or may not have "kB" (kiloBytes) at the end and I want to parse ...
2
votes
2answers
33 views

Compute the double value nearest preferred decimal result

Let N(x) be the value of the decimal numeral with the fewest significant digits such that x is the double value nearest the value of the numeral. Given double values a and b, how can we compute the ...
0
votes
1answer
31 views

inserting c# double values to sql server float field. (no fractional part)

I am trying to insert double values to my database via EF 5. I generated EF entity model from db. There is a price column in the table which is float, and naturally EF generated a double type for the ...
0
votes
1answer
21 views

line spacing in label (autosize = false) C#

I know its possible to do line spacing in Label. Can someone help me do this pls? I need a label with double spacing or 1.5 spacing. I found this code but its not working: private void ...
1
vote
2answers
63 views

Convert unsigned long long to double in C

I realize this question could be processor dependent, but hopefully someone can point me in the right direction. For the life of me, I cannot figure out how to convert an unsigned long long int ...
-2
votes
2answers
31 views

matlab - converting double -8.451147490804935e+03 TO -8.451

Any tryouts I've made converted it to 8451.114+.... while normal doubles ( without the e and only 4 digits precision ) were their original value. tried str2num double converts , sprintf and all of ...
0
votes
2answers
43 views

Updating an double everytime a Object is added to a ArrayList

In my game I want all the zombies to have a random color. I have already figured out how to change the color of the zombies but the problem is that I wan't all of them to have different colors but ...
0
votes
0answers
12 views

JSONObject removes decimal dot, if round number

Using a rest service, we are transfering values using JSON. At some point, we need to decide, wheter the incoming value was a long or a double. While Double d = 17.0; ...
1
vote
1answer
29 views

List<List<Double>> to double[][] for JAMA or other libs

i cannot get my List> to double[][] to work on linear algebra package like JAMA. Basically i have some sort of List with coordinates like this : [[2.63, 11.087, -12.054], [2.357, 13.026, -15.29], ...
0
votes
3answers
39 views

C# Convert double to string cut some last numbers

I have latitude and longitude in double and I want to convert them to string format with dot. So I am using: start_lon.ToString(CultureInfo.InvariantCulture) and I get right format (I get dot) but ...
0
votes
1answer
10 views

How to determine if arccos is even in Java?

I am trying to program a calculator and when the result is even, i.e. an integer, the display should show an integer and not in deciaml format. For many cases it suffices to just do the following: ...
2
votes
3answers
83 views

Why don't integers get lifted to doubles when treated as objects and comparing?

I ran across this interesting situation today: var a = new HashSet<Object> { 1.0, 2.0, 3.0 }; a.Contains(1); //False a.Contains(1.0); //True Of course, this was just a generic version ...
0
votes
2answers
77 views

Issue with adding a Double to a List<double>

I'm getting an issue with adding a Double to a List<double> from a CSV file. Now I've done this before, with the exact same file, and added it to a Double Array. Here is my code that works with ...
1
vote
2answers
88 views

C/C++ NaN resolution

When I'm running some code I have to add up the elements of a vector and then renormalize. I'm getting NaN so I'm hoping to resolve this. For example, when x = [1,2,3] is a vector<double> I ...
0
votes
2answers
30 views

XAML C# Tag to Double

I have a XAML file with a bunch of TextBlocks in them, and a button with a tag which contains the average of those values. The code for the button is this: <Button x:Name="ltavg_button" ...
0
votes
1answer
24 views

How to store 3 decimal places with MySQL

I have a field in my database table, type of: double How can I store a value like this: 0,001 in it? I've already tried, but it's truncated into 0,00.
2
votes
1answer
30 views

AsyncTask onProgressUpdate(Double… value)

I am using the AsyncTask to compute a double and then I want to publish this double value private class CalcTask extends AsyncTask<Void, Double, Void>{ @Override protected Void ...
-2
votes
4answers
40 views

Java math isnt making sense [duplicate]

OK so this is a problem in a larger piece of code which does'nt seem to make sense. below is the code which is the problem... It prints Ratio = 0.0 the console when launched it should be equal to ...
0
votes
2answers
47 views

Unable to change NSNumber to Double and do some calculations with it

my problem is that i have an Array that holds some double values NSArray *level4results = [context executeFetchRequest:request error:&error]; then i sum up all the values in that array ...
0
votes
1answer
10 views

Double Entry in Database when inserting from form using PHP & MySQL

I am trying to create a web application. I am new to PHP & MySQL. When I insert data into my table using PHP, double records of the entry are made into the table. I am using XAMPP. Please help me ...
0
votes
1answer
27 views

Convert Integer to Double in MIPS

I want to divide two values that are in $tn registers. I have to divide these two values to get a double result but the function div only returns the integer part of that division can anyone help ...
0
votes
3answers
35 views

C# How do I shorten my double when I converted bytes to megabytes?

Hello I made a updater that downloads update files but I always used bytes as indication now I found a way to convert it to megabytes, it works good but one little problem it returns HUGE numbers for ...
-3
votes
1answer
65 views

Passing a double pointer to a function as reference - c

I'm having hard times trying to pass the reference of double pointer to a function. I have this: #include <stdio.h> #include <stdlib.h> #include <string.h> #define MAX_ROWS 2 ...
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
50 views

Loading Data From Comma Separated Text File to 2D Array?

I am trying to load data from a text file that looks like this: 161,77,88,255 0,44,33,11,111 etc. I have functions to manipulate it, and am ensured that the array is the correct size (which may ...
4
votes
1answer
133 views

Set precision of std::to_string when converting floating point values [duplicate]

In C++11, std::to_string defaults to 6 decimal places when given an input value of type float or double. What is the recommended, or most elegant, method for changing this precision?
2
votes
4answers
54 views

Why here different results in java for long and double with same values

public static void main(String[] args) { double firstDouble = 1.8d; double secondDouble = 1.65d; float firstFloat = 1.8f; float secondFloat = 1.65f; ...
2
votes
3answers
63 views

Converting string to double always gives me wrong representation

I want to convert this string "0.00071942446044" to double by using Double.parsedouble method but it always gives this answer 7.1942446044E-4 Is there any idea to convert it to double but keeping ...
2
votes
3answers
39 views

Matlab: your opinion about a small memory issue working with matrix

I have a small question regarding MATLAB memory consumption. My Architecture: - Linux OpenSuse 12.3 64bit - 16 GB of RAM - Matlab 2013a 64 bit I handle a matrix of double with size: 62 x 11969100 ...
0
votes
3answers
66 views

c++ : correct way to calculate power for large no

I am trying to calculate 65^17 using c++. I wrote following code but getting wrong value when 65^11 . What is the correct way to calculate the answer ? ( i.e. 65^17) Code : long double data= 1; int ...
0
votes
1answer
30 views

Pubby doesn´t show xsd:double. (semantic web & opendata)

I have a Virtuoso Server to serve triples about domotical sensors. There is a pubby configured to resolve the URIS of the resources. Let´s consider a device, which has the following triples: @prefix ...
6
votes
3answers
78 views

toString() method within System.out.println() a double call?

A professor of mine once said that the following code should never be done: System.out.println(object.toString()); He said (and I believe cited "Effective Java") it causes a double call. Since ...
0
votes
2answers
34 views

Android - Double Value Error only on Real Device

Here is a fragment of my app used to show a graph using achartengine: private void addSampleData() { ... DecimalFormat twoDForm = new DecimalFormat("####.##"); for(i=0; i<count; i++){ list[i] = ...
0
votes
1answer
19 views

Why is my header double the height in IE

Hi guys I'm very new to webdesign and the more I learn the more I realize that IE is a bit of a jerk when it comes to how it renders. In firefox and chrome everything works right but in IE my header ...
1
vote
3answers
41 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
2answers
34 views

double field type declaration as zero

What is significant difference between following zero double variable declaration: 0.0 VS 0d double d1 = 0.0; double d2 = 0d; I understand that both these are better than just 0,because are more ...
-1
votes
2answers
33 views

function does not work in Matlab [closed]

I am surprised why following code does not work function [ x ] = generate2(N,m,A3) f1 = 100; f2 = 200; T = 1./f1; t = (0:(N*T/m):(N*T))'; %' q=randn(500,1); wn = randn(length(t),1); %zero mean ...
0
votes
5answers
75 views

Having troubles with doubles

after long hard work, I have finally completed (almost) my java menu program. However, I am having trouble getting my return change function to work at the end of my code. It is giving very odd ...
0
votes
2answers
31 views

output for a texteild is zero rather then an actual result

This is a strange output, I seem to trigger the alert view each time, and the value for num1 would be 0.50 which is fine. When I click calculate the alert field is triggered, and what's more num1 is ...
-3
votes
1answer
54 views

Double increment

I am try to workout a table like below image. I have tried using for loop but cant seem to get the right outcome. Can someone help me out here.. Thanks loads! This my code: double XCor = 10; double ...
4
votes
2answers
36 views

Value of 1024 has one bit more in binary representation that value of 1

The output of following code: System.out.println( Long.toBinaryString( Double.doubleToRawLongBits( 1 ) ) ); System.out.println( Long.toBinaryString( Double.doubleToRawLongBits( 1024 ) ) ); Is: ...
5
votes
3answers
108 views

How to send by socket C++ compatible struct from Java?

Suppose there is already written, unchangeable host program, that receives such C++ struct by socket: #pragma pack(push, 2) struct Data { double x; double y; double z; long frameNumber; }; ...
1
vote
0answers
68 views

Double.MaxValue crashes mixed Native/C# application

We have a problem with an application crashing when it calls a method that uses Double.MaxValue. This is true running in the debugger as well as in the release version, and happens under 32-bit XP as ...
1
vote
6answers
73 views

How to store three small numbers into one double?

I have int A, B, C. And A is in range 0-9999, B is 0-99, C is 0-99. Because the function must return only one double, I think of putting them all into one number. Otherwise I need to call function ...
1
vote
2answers
91 views

How to get the opposite side of round()/floor() in C?

I have double a=1234.5678, now I can get 1234 by floor(a), but how do I get 0.5678? I know I can just subtract a-floor(a), but is there a function in the runtime library?
0
votes
2answers
53 views

Double to Number

How to convert Double to Number in Java, like in the code below? public Number parse(String text, ParsePosition status) { // find the best number (defined as the one with the longest parse) ...
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
3answers
59 views

Reading only Doubles don't work

I have a problem reading double values from txt file. My program only converts ints to doubles, but i want to ignore them. Example file: 1 2 3 4.5 5 6 7 8.1 9 10 11 12.7 Here is my code: File ...
0
votes
1answer
66 views

Recursive parameters for quicksort

I'm trying to implement a simple Quicksort Algorithm (Doubly Linked List, circular). The Algorithm works pretty well, but it's much too slow, because of the following operation: iEl = ...
0
votes
4answers
41 views

Double wont show on ASPX Page

I am trying to show the value of the query below (Total) on the ASPX page and I keep getting 0. When I put in a breakpoint and debug total all equals 15.0 as it should. The value is saved as a decimal ...

1 2 3 4 5 42