Double precision floating-point format is a 64 bit data type used for storing fractional numbers.
2
votes
3answers
80 views
How do I toggle if a double is negative or not?
I'm new to java, and i'm trying to create an android app were you can tilt your device to rotate an imageview. I've got everything, except that the imageview is rotating the wrong direction. So if the ...
1
vote
2answers
88 views
how to print double value without scientific notation using java
I am sorry if this question is duplicate as i only found this one while google and it didn't solve my problem.Actully my problem is very simple.i have to print a double value without expnential form
...
1
vote
2answers
28 views
using dataset.addSeries with a Long[] values [duplicate]
The arguments that dataset.addSeries takes are as follows (java.lang.Comparable key,
double[] values,
int bins,
double minimum,
double maximum)
...
1
vote
0answers
60 views
Symfony2: adding dynamically an element to a double embedded relation form
One model like this:
class X
{
/**
* @ORM\OneToMany(targetEntity="Block", mappedBy="x",cascade={"all"}, orphanRemoval=true)
*/
private $block;
...
class Block
{
/**
* ...
3
votes
0answers
102 views
Why does dividing a double by zero throws no exception, while dividing a int does? [duplicate]
When we divide a double by zero it doesn't throw any exception but successfully map to the infinity. But not in the case of int.
Despite the fact that both int and double have got an upper limit to ...
2
votes
1answer
31 views
Which is the best practice for initializing a double in C++?
I'm wandering which is the best practice to initialize a double. It is better to initialize it to 0.0 or NaN? And why?
0
votes
0answers
27 views
Beginning of JSON Work - Getting Values
I'm not too experienced-or experienced at all for that matter with JSON. I'm using the official JSON-in-Java package, and it somewhat works... not really.
With JSON like this:
{
"versions": [
...
0
votes
2answers
47 views
Diagram of array of 8 8-bit characters
The following is a diagram of the memory used by an array of 8 8-bit (1-byte) characters. Do a similar diagram for an array of 8 32-bit integers and 8 64-bit doubles.
Byte (Character) 1 2 ...
-1
votes
1answer
69 views
C++ Problems Displaying Doubles with cout
I have this simple class and can't figure out how to get the doubles to display properly.
Currently the are displayed as "0.00". Without 'showpoint' and 'setprecision()' they were displaying as random ...
0
votes
2answers
39 views
Redefine Scanner's not-a-number recognition?
In Java, the class java.util.Scanner provides a convenient way to parse long strings. In my particular case I have to parse a string with many double values, for which I use the nextDouble() method.
...
4
votes
3answers
76 views
Creating a HashSet for Doubles
I wish to create a HashSet for real numbers (at present Doubles) using a defined tolerance (epsilon), (cf Assert.assertEquals(double, double, double)
Since using Double.equals() only works for exact ...
1
vote
5answers
75 views
Basic Java: Method to tell if a double is an integer
I'm a beginning programmer and I need a method that returns whether or not a double is an integer. The problem occurs when the number is too big for an int to hold.
Here's what I have:
private ...
1
vote
1answer
80 views
MFC writing double data type to registry
I'm working on an application that needs to store a data value of type double to the registry. I'm using MFC but the only functions in "theApp" that I see for doing the job (from the searching that ...
0
votes
5answers
59 views
Take different values from a String and convert them to Double Values
In my code, I'm asking the user to input three different values divided by a blank space.
Then, those three different values I would like to assign them to three different Double variables.
I have ...
0
votes
0answers
77 views
Watir + gwt application
I am writting automatic test for GWT application. And I try to double click on table element. I am using this code fo click:
browser.element(:xpath, ...
-2
votes
7answers
97 views
How to check if a double value has no decimal part
I have a double value which I have to display at my UI.
Now the condition is that the decimal value of double = 0 eg. - 14.0
In that case I have to show only 14 on my UI.
Also, the max limit for ...
0
votes
0answers
19 views
getting “-1.#IND00” on printing double type values in c [duplicate]
on printing floating number types values in 'c' i am getting a value "-1.#IND00" . Can someone explain the meaning of this "-1.#IND00". output snippet is
...
-1
votes
3answers
133 views
Basic C Program, Babylonian Algorithm
I'm new to the C language and am trying to do a lab tutorial that we were given at uni.
We've been asked to do the following:
Task 1.
The Babylonian algorithm to compute the square root of a number ...
-4
votes
4answers
202 views
c# convert string to double array
I've been working all day trying to convert a string from a text file into a double array but can't figure out why I am getting the error "the file could not be read; input string was not in the ...
4
votes
1answer
101 views
Call of overloaded ‘pow(const double&, double)’ is ambiguous
I am new to C++, here is my problem : I need this quantity :
h = pow(mesh.V()[i0],1.0/3);
but I get this error message whenever I compile the program :
call of overloaded ‘pow(const ...
2
votes
2answers
28 views
How to reduce count of binding exceptions when binding height and width in WPF?
I want to bind items width and height to a model.
For some items width and height is specified but most of them should be set to "Auto" mode.
So i created model with property:
public double? ...
1
vote
1answer
36 views
Matlab - Double duration of .wav
I'm creating individual notes from a single note thats read in using the wavread function.
I'm using the resample function to create these notes. eg:
f5 = resample(a,440,698); %creates note.
...
0
votes
4answers
39 views
Need help creating a method that returns an array whose elements are squares of another array
I have an assignment that requires me to create a method that takes an array of double named dArray as parameter and returns another array whose elements are squares of the elements of dArray.
For ...
0
votes
1answer
78 views
“uses a non-entity [class java.lang.Double] as target entity in the relationship attribute”, what do I do wrong?
I cannot run my project because I get this error:
Exception Description: Predeployment of PersistenceUnit [RekeningAdministratiePU] failed.
Internal Exception: Exception [EclipseLink-7250] (Eclipse ...
0
votes
2answers
59 views
getting selected data from a vector then storing as a variable
Ive currently stored all my data into a vector as variables. im trying to get selected data from that vector, storing then as variables so i can then do calculations, save the answers as a variable to ...
0
votes
3answers
87 views
How do I check if a double with decimals is divisible?
I'm trying to test if a number is cleanly divisible (no remainders) by another. If I compare it against an int, it works correctly:
NSTimeInterval timeElapsed = // a double goes here
// round to 3 ...
1
vote
1answer
42 views
“Cannot convert from decimal to double”
I'm trying to pull some numbers that occur in my database as fractions of a day in decimal format. These times can be null in some circumstances though, so I am trying to utilize this method to ...
0
votes
2answers
79 views
how to allow for missing data in a text file
I have got a large file containing numerous sets of data, there are some blanks though marked "--" where for what ever reason the data hasn't been recorded. The rest of the data will be stored as ...
0
votes
2answers
214 views
How to validate jtextfield which accepts only float/decimal value in java swing?
I am trying to validate text field such that it accepts float or double values like .25, 0.2, 111.25
It should not accepts values like ...25, 0.2.2. etc
1
vote
1answer
67 views
Trying to delete an element from a double linked list in c
Ι have a problem while trying to delete an element from a double linked list in c.
Nodes_t *remove_Nodes (Nodes_t *a, Nodes_t b){
Nodes_t *head;
head=a;
if ((a->i_pos==b.i_pos) ...
0
votes
1answer
62 views
Format Double in Currency format so that it has two zeros after the decimal point, rather than 1
I currently have a Double which is supposed to be displaying a Currency. However when the Double is actually displayed, it only shows data like this: "32.0". I would instead like it in the format of ...
-1
votes
2answers
80 views
MySql Decimal Datatype : not Inserting Proper Value
Short Version
I am trying to insert Decimal value but after insertion it is storing 99.999999 for all Decimal values. I am using MySql 5.5.16.
Long Version
I am trying to create a table with schema ...
2
votes
3answers
43 views
Typecasting Different Types into One Type
long is a 64-bit signed two's complement integer. Is Long a 128-bit signed two's complement integer? I just wanted to confirm this before proceeding.
Long l = 6;
int i = 4;
Integer ii = 2;
l += (l/i) ...
0
votes
1answer
36 views
Reformat From String into Decimal
i had data = 137500 as double variable, and i converted with DecimalFormat into Rp.137.500,00 and set to a textfield.
how do i reformat from texfield to 137500. cz i want to multiply from that.
4
votes
2answers
106 views
Truncating Double to 2 decimal places?
I know this question is repeated alot, but please have a look at the statement first than mark it already answered :)
For truncating the double values 2 decimal places I use two ways which are mostly ...
3
votes
2answers
100 views
PInvoke: Issue with returned array of doubles?
I am using PInvoke to call a C++ function from my C# program. The code looks like this:
IntPtr data = Poll(this.vhtHand);
double[] arr = new double[NR_FINGERS /* = 5 */ * NR_JOINTS /* = 3*/];
...
0
votes
5answers
99 views
String and Null Exception check through Try and Catch Block
The following code to try to catch a empity double inputvia logging is not working. I also want to check if a user added a string in the input field by mistake (but I am having trouble writing the ...
-4
votes
5answers
69 views
NullPointerException is not being caught in try block [closed]
The following code to try to catch a NullPointerException via logging is not working. Can someone please look at this and guide me.
try {
if (results1 != 00.00) {
throw new ...
1
vote
3answers
149 views
Float Precision Format to suppress trailing zeros
I am using the format string F2 to convert a double value. I am getting the formatted value as 9999.00, if the double value is 9999
Which format string should I use to avoid trailing zeroes in ...
1
vote
2answers
53 views
How to format a double with more digits?
I have a double value and I want to convert it to a string with more than the default 15 digits. How can I accomplish this?
(1.23456789987654321d).ToString(); // 1.23456789987654
...
0
votes
1answer
83 views
Double to BigDecimal, comparing both
I have to do a double comparison, I have tried many things, but nothing really works.. they are responsible for stopping a cycle.
First off, compared double's them selves using (double) ...
5
votes
3answers
205 views
C++. reinterpret_cast from double to unsigned char*
I was having a small play around with C++ today and came across this which I thought was odd, but perhaps more likely due to a misunderstanding by me and lack of pure C coding recently.
What I was ...
1
vote
1answer
113 views
how to delete two-dimentional double array
I wrote two functions - one to create two-dimentional double array, and another one to delete it.
double** createMatrix(int n)
{
double **a = new double *[n];
for (int i=0; i < n; i++)
...
0
votes
1answer
21 views
double datatype casting works on windows but not on linux
I am having a string pointer in C which is having bigint data.
eg 9223372036854775807 i.e 2^63
I wanted to cast this to double but as you know double has 15/16 digits available to store in fraction ...
0
votes
3answers
86 views
Java double equality
I'm having a problem in comparing doubles. The comparison is responsible for stopping a while cycle. The code runs fine, but then suddenly, the cycle never stops. The values from centroidList's dimVal ...
3
votes
2answers
67 views
Preserve Zeroes Before Decimal When Converting Double to String
Using VB6, when I have a double i = -0.1 if I convert it to a string with strTemp = Str(i) I lose the leading 0 before the decimal and end up with just -.1
How do I keep the leading 0 before the ...
0
votes
3answers
35 views
Comparing a double in an array and returning index number
public int index(double dest){
int index = 0;
for(int i=0; i<coords.length; i++){
if((dest-coords[i])<1 && (dest-coords[i])>-1){
index = i;
...
0
votes
2answers
99 views
single and double quotes in sql insert
I had an issue come up when working with mySQL. I have a table of parts with part numbers and descriptions. I am trying to insert over a thousand parts and need to get the formatting to work for every ...
-4
votes
3answers
64 views
Array with a catch [closed]
Here is what I have to do:
Create an Array
User inputs 10 double elements
Use a catch to make sure it is valid data
Then display the data
Here's the code so far:
static void Main(string[] args)
{
...
0
votes
3answers
45 views
Populating an array from another array using multiplication inside it [duplicate]
as you can see below I have a variable called costperkm, usually 0.08, then I have an array based on a number, then a second array built around those numbers multiplied by costperkm, but I get the ...




