Double precision floating-point format is a 64 bit data type used for storing fractional numbers.
1
vote
2answers
56 views
C interpretation of a double
I am currently working on a project for school and I have been stopped by a problem. Basically what the assigment is: we get a file containing for instance: e 18.91, n 10.03 without the dot so there ...
4
votes
3answers
182 views
Floating point calculation gives different results with float than with double
I have the following line of code.
hero->onBeingHit(ENEMY_ATTACK_POINT * (1.0 - hero->getDefensePercent()));
void onBeingHit(int decHP) method accepts integer number and updates health ...
0
votes
2answers
92 views
Truncate double or add extra 0 to the decimal - Java
This might be a duplicate, but I cannot find any answers that work with my code.
I'm trying to truncate my results for a method(for calculating a fee) in Java. I then try to write the results to a ...
-1
votes
1answer
826 views
Matlab - Undefined Error for Input Arguments of Type Double
I'm trying to write a function that does what conv2(h1,h2,A) & conv2(...'shape') does without using the built-in function. (speed is currently not an issue). as defined here: ...
2
votes
5answers
92 views
How to obtain return type double?
I have created a method which is supposed to return type double and here is my code
private void myMethod()
{
if(myArrayList.size() >= 2)
{
Double t = ...
0
votes
2answers
84 views
Java: Combination function yields decimal number
I was trying to implement a simple combination function
private int combination(int n, int k)
{
if(n>>1 < k)
k = n - k;
double mul = 1;
for(int i=n+1-k;i<n+1;i++)
...
-1
votes
3answers
131 views
Using Math.floor on a double variable won't work. Java (Using Eclipse) [closed]
So basically I tried 2 things. I'll gives you the codes for them:
double number;
Scanner input = new Scanner(System.in);
System.out.println("Name a number!");
number = input.nextDouble();
number = ...
1
vote
1answer
52 views
C# magic double value parse
Currently I am working with numbers with high precisions in complex calculations.
Some of results and source data should be stored in serialized form.
Everything was good till I get magic double ...
0
votes
0answers
28 views
Double Values Not Showing Calculated Values
I'm trying to calculate the payment term for the user. I try to crunch the numbers and spit them out, but that's not happening for some reason. However, it displays perfectly fine when I explicitly ...
1
vote
1answer
63 views
Weird Behaviour using doubles [duplicate]
I have this switch statement that decreases the double itemCost (originally 0.80) by 0.20 each time. When it reaches 0.00 i want to execute some code. It works fine until it gets to 0.00 but instead ...
0
votes
3answers
81 views
Php length of cyrillic string doubles its value
Hello here it is the problem:
when i get to the $_POST latin string strilen() works perfectly, but when i get cyrillic string strlen() doubles its value here is the code:
$word = $_POST['word'];
echo ...
0
votes
1answer
260 views
Double Sum of series in Matlab
I am new to MATLAB . I want to solve the following double summation denoted as 'A'.
A= sigma(j=1..n)sigma(k=1..m)x1_ik((x2_ijk - x3_ij(k-1))^2)
I do not understand is that loop is the good way to ...
-3
votes
1answer
199 views
Rounding doubles to the nearest whole number in Java?
How do I round my numbers of output += Math.pow(baseUno, powernumber)+ " "; to the nearest whole number?
They always give me an output of, for example, 1.0 or 2.0. How do you round these so that ...
0
votes
1answer
61 views
Unexpected result converting double to int
I was trying to cast a double value to int and I got a different value.
I have this code:
double double100times = 240;
int a=[[NSNumber numberWithDouble:double100times] intValue];
and the value I ...
0
votes
2answers
47 views
Transform double into byteArray in android
I have a webservice that gets me a list of double's. Now i transform that list in a list of Strings. that i then call in an alert, with an dropdown.
After this i have to take the value from the ...
1
vote
0answers
119 views
Android ListFragment creates double list on recreate
I am trying to implement a basic activity with 2 tabs, each tab containing a list.
Following guides, I have written the following code:
MainActivity.java
public class MainActivity extends Activity {
...
-1
votes
3answers
105 views
java how do I convert double 1.4000000000000001 to 1.4?
I have a method like
private static double getMinorVersion(final double minorVersion) {
return minorVersion + 0.1;
}
When I test this
final Version version = new Version(1.3, ...
1
vote
5answers
84 views
Java: How to change Double 2.3 to “2.0”?
How can I change a
Double d = 2.3
to
Double with value of 2.0
I used Math.round, but it produces 2.0
I need to save it to a String as 2.0
3
votes
3answers
136 views
R Double For Loop
I have a kind of obvious question about doing a double loop in R and could not find the answer on this website. I am using the following code:
mu <- c(0, .2, .5, .8)
sco <- matrix(nrow = 50, ...
0
votes
4answers
150 views
I keep getting this error: invalid operands to binary ^ (have 'double' and 'double')
Whenever I run the code my lines 52 and 61 keep giving me the same error message.
#include<stdio.h>
#include<math.h>
double getinput(void);
double calcwindchillold(double v, double t);
...
31
votes
3answers
1k views
Is a float guaranteed to be preserved when transported through a double in C/C++?
Assuming IEEE-754 conformance, is a float guaranteed to be preserved when transported through a double?
In other words, will the following assert always be satisfied?
int main()
{
float f = ...
8
votes
3answers
173 views
Java signed zero and boxing
Lately I've written a project in Java and noticed a very strange feature with double/Double implementation. The double type in Java has two 0's, i.e. 0.0 and -0.0 (signed zero's). The strange thing is ...
0
votes
1answer
37 views
R Control Structure Double Loops
Here is a simple piece of code:
for (i in c("red", "green"))
for (j in c("blood", "trees")) {
k <- paste(i, j, sep=" ")
print(k)
}
}
I would like it to only output "red ...
0
votes
2answers
240 views
Incompatible types when assigning to type - C
I'm working in Code::Blocks on a project in C.
When I compile I get the error: "incompatible types when assigning to type 'double *' from type 'double'" on lines 81, 85, 90, 91.
The project is to ...
-1
votes
2answers
32 views
two relations over two tables
I have a problem with a database design I am trying to complete in sql server management in a diagram.
I have an process table and an activity table.
A process can call multiple activities, however ...
1
vote
1answer
74 views
R double loop select output
I think I have a quite straightforward and easy to answer question, but I cannot come up with a solution by myself.
I have one vector with 10 elements and I want to get a new vector which consists of ...
1
vote
2answers
81 views
How i can convert string values in formats “1.123” and “1,123” to double by single double.TryParse?
I have an incoming source of string values representing double values with "." and "," delimiter and my program would run on PCs with different settings of delimiter ("," or ",")
Which way can I ...
0
votes
2answers
61 views
My equation is not looking at a double
I have an equation for calculating Heat Index. The teacher provided the equation and I copied it right but it is not looking at my humidity variable.(Sorry if I posted this wrong this is my first post ...
2
votes
1answer
167 views
Improve performance on BigDecimal to double conversion
This is the Jdk7-b147 version of BigDecimal.doubleValue()
public double doubleValue(){
if (scale == 0 && intCompact != INFLATED)
return (double)intCompact;
// Somewhat inefficient, ...
0
votes
1answer
81 views
Issue with CLLocation and double
I have a longitude with -122.406417 and self.actualLongitude is a double member.
NSLog(@"original lon: %f", [self.tempLocation coordinate].longitude);
NSLog(@"original lat: %f", [self.tempLocation ...
0
votes
3answers
65 views
Double value into TextView
I am trying to display time in 0.0 hours. So I want to divide the minutes by 60 to get a .xx
This is what I have but I am not getting anything after the . even when there is an uneven number of ...
0
votes
1answer
49 views
Undefined arguments(Image Processing)
I am having a little problem here. In the code below is a function that has two arguments when I attempt to execute the functions i obtained this error
Undefined function or method for input
...
0
votes
2answers
81 views
Convert a segment of an Hex string to a double
I have a device that returns data as a Hex value, for example 00 00 00 56 00 00 01 00. I place this into an NSString. I am only interested in converting the 3rd and 4th segment to a double. ie only 00 ...
-5
votes
6answers
73 views
I need to get the data from double values without having decimal places
I have a double variable as shown Below
double var1 = 0;
And
I Have a Value = 123.25.
For Example var1 += Math.Round(123.25), I am getting 123.0
So I need to get the Data Like as shown Below?
...
1
vote
1answer
193 views
Converting int/long zero to double
Considering this code snippet:
int i = 0;
double d1 = (double) i;
long l = 0L;
double d2 = (double) l;
Running this on my machine prints 0.0 for both conversions. But can d1 and d2 ever be anything ...
0
votes
1answer
50 views
Convert to long long, pros and cons in C
I want to accelerate my algorithm using long long instead of double data type. My algorithm is to find the shortest path in a directed acyclic graph (DAG). Simply, it adds the weight of an edge "E: ...
-1
votes
1answer
87 views
Haskell returning incorrect result [duplicate]
Possible Duplicate:
Haskell: Unexpected output for expression [0, 0.1 .. 1]
In Haskell, does anyone know the reason for the following result?
Prelude Data.List> map (\x -> x - 0.1) ...
-2
votes
1answer
120 views
Java multiplying two doubles into another double
I'm trying to replace payRate * hoursWorked into a single variable grossPay but when I do it's returning a value of 0.0 for any calculation. double grossPay is commented out on purpose so you can see ...
-1
votes
3answers
142 views
Java, subtracting double data type
I am trying to do a simple calculation. I can't figure out how to subtract "double admissionPrice" in the last if-else statements.
Its pointing to the subtraction sign giving me this error message:
...
-2
votes
2answers
133 views
dividing a small number by a larger giving me 0.0
I am doing a program that calculates radio activity at a previous point in time based on measured radioactivity.
However if the half-life is very large compared with the elapsed time I get a 0.00 as ...
0
votes
5answers
67 views
Merge double type array in Java
Is there a simple way like one line of code to combine two arrays of double type into one array?
If there isn't, what would be the easiest way to do it?
Thanks
-1
votes
3answers
79 views
casting of string to double
I have made a simple android app,i that some calculations are there from 1 activity's EditText value some multiplication,sum and other mathematical procedures and showing results as double in another ...
-1
votes
3answers
70 views
IOS: Get two digits of a double (€) NOT to display the value, just return it
I´ve read a lot of posts about this but all of them were to limit the number digits to show them(NSString) .In my case I have:
I compare two double values(wich are the "same"), each of them got from ...
0
votes
4answers
172 views
how to retrieve a Double value from one activity to another?
I have made an application containing 2 activities ,in that first activity contains some EditTexts (decimal numbers),and anothe ractivity also contains some Edtitexts(decimal) ,now I want to pass one ...
2
votes
0answers
415 views
representation of numbers in bash and printf of hexadecimal numbers in bash
I want to understand how numbers (doubles) are represented in bash and what happens when I printf numbers in hexadecimal format in bash.
According to the IEEE 754 standard double should be ...
0
votes
2answers
75 views
Android app crashes as soon as it starts
If this is a dumb question then I apologize:
This is my first attempt at making an android app, and for some reason this will not start. It always closes as soon as I click on it Any thoughts on what ...
0
votes
6answers
210 views
How to print output in java
I have this simple problem I'm trying to do. I'm trying to write a program that doubles these five numbers. Then I want to compute the average of these numbers and print them out. The code runs with ...
-1
votes
3answers
144 views
Finding the average of an array of doubles from file input [closed]
My attempts to find a way to get the average of this array have so far been fruitless. Any help would be appreciated.
#include <iostream>
#include <algorithm>
#include <numeric>
...
1
vote
4answers
104 views
Returning a double from a method
I am currently writing a program that will read through a designated text file that checks the transaction values of each buy/sell/summary and checks the arithmetic such that if the transactions from ...
0
votes
2answers
79 views
Rounding to 2 decimal points
I've used the following to round my values to 2 decimal points:
x = floor(num*100+0.5)/100;
and this seems to work fine; except for values like "16.60", which is "16.6".
I want to output this ...





