The double-precision tag has no wiki summary.
0
votes
2answers
32 views
Function return type mismatch
I'm attempting to recode an old C++ program in Fortran to make use of LAPACK (I'm aware that C++ does have LAPACK++, but I'm having a lot of trouble installing it, so I gave up).
I originally didn't ...
5
votes
5answers
124 views
Whats wrong with this simple 'double' calculation? [duplicate]
Whats wrong with this simple 'double' calculation in java?
I know some decimal numbers can not be represented in float / double binary formats properly, but with the variable d3, java is able to ...
3
votes
2answers
75 views
string.format(format,doubleValue) , precision lost
I have this double value:
var value = 52.30298270000003
and when I convert it to string, it losses its precision:
var str = string.Format("{0} some text...", value);
Console.WriteLine(str); // ...
0
votes
1answer
38 views
Data type mismatch in fortran
I've written a rudimentary algorithm in Fortran 95 to calculate the gradient of a function (an example of which is prescribed in the code) using central differences augmented with a procedure known as ...
1
vote
2answers
63 views
Interprete the print out of a denormalized double in C++
What does it mean when a C++ program prints the following number out, and what is the meaning of the H in the end?
-6.38442e-86H
The entire system is too large to add here, however here is the code ...
0
votes
0answers
27 views
Parsing base 2^32 numbers to decimal (For theorically unlimited numbers)
I am working on a C++ problem where I have to print my class.
My class stores and does arithmetic and logic operations on theorically unlimited long numbers. It has an array of unsigned ints to hold ...
1
vote
2answers
66 views
Computer precision: when should I have to worry about it?
In C++ programming, when do I need to worry about the precision issue? To take a small example (it might not be a perfect one though),
std::vector<double> first (50000, 0.0);
...
0
votes
1answer
101 views
CUDA double precision and number of registers per thread
I am having an error while executing the kernel
too many resources requested for launch
I checked online for any hints on error message, which suggest this happens due to usage of more registers ...
0
votes
1answer
69 views
Matlab: Loss of precision in calculations. Scaling of variables possible?
Today I ran into a problem with precision in Matlab:
Tp = a./(3600*sqrt(g)*sqrt(K).*u.*Sd*sqrt(bB))
where
a =
346751.503002533
g =
9.81
bB =
...
1
vote
2answers
38 views
Write double precision binary files using python
How can I write double precision files binary files using Python? I am doing the following presently but it is giving me single precision files:
#!/usr/bin/env python
import struct
data ...
0
votes
2answers
77 views
Accuracy of Matlab linspace and range versus Kahan summation algorithm
I'm using the Matlab linspace function and the range : operator to obtain equally spaced vectors, but I'm unespectedly receiving unequally spaced numbers. My code is the following:
format long
x1 = ...
2
votes
1answer
44 views
python module compiled by SWIG returns wrong result
I'm just playing around SWIG to make python' module for specific C library. I got the trouble with double and float variables. Here an example:
/***** simple.c *****/
#include <stdio.h>
double ...
0
votes
2answers
101 views
How to convert sql type double-precision in c#
I have a database access, and one of this field is double-precision.
Normally if i set in the textbox 1.71 or 1,71 the field in database should contain 1.71.
But if i execute query the value of ...
0
votes
1answer
121 views
How does C store a double into an allocated array of type float?
I am changing my program from floating-point precision to double precision.
Nevertheless I start this routine by reading floating point numbers from a binary file.
bufz = alloc1float(nz);
for (i=0; ...
0
votes
1answer
63 views
Adding check constraint for type double precision in postgres
I have coordinates with the type double precision in a column. I want to check the length (it has to be 7) before the decimal point (before the decimal places). The numbers can have decimals up to 4.
...
1
vote
1answer
68 views
Order of magnitude for double precision
What order of magnitude difference should I be expecting for a subtraction between two theoretically equal double precision numbers?
I have two double precision arrays. They are expected to be ...
0
votes
2answers
153 views
How to Map a double value to a float one In Java?
At first glance, my question could seem a bit odd; but casting a double to a float value is not what i want. Since when you cast it, you just lose some precision with respect to the rules defined ...
0
votes
2answers
74 views
Understanding double precision operations in C
I would like to understand why this code:
double r,d,rc;
scanf("%lf %lf", &r, &d);
rc = (r * r) - (d/2) * (d/2);
printf("%.2f\n", M_PI * rc);
returns more precise result than this one ...
0
votes
3answers
107 views
Explain 1 - 3*(4/3 - 1) = 2.2204e-16 in Matlab
I am trying to understand the double precision numbers in Matlab. Why is this 1 - 3*(4/3 - 1) not equal to zero?
0
votes
1answer
100 views
How to translate the value of %a given by printf?
What is the value of 0x1.921fb82c2bd7fp+1 in a human readable presentation?
I got this value by printf using %a.
0
votes
2answers
86 views
Matlab and c++ matrix product: same input, different outputs
I'm using Matlab 2010 in my ubuntu 12.04 on a x86 computer, and g++ 4.6.3.
this is how I do the production and the inputs:
#include <Src/Tools/Math/Matrix_nxn.h>
#include <iostream>
...
0
votes
3answers
95 views
Performance of comparing integers vs comparing floats/doubles (PHP) [closed]
I was working on a small project the other day that involved comparing a lot of numbers (percentages, more than several billion billion of them) and, since performance is important, I was looking for ...
-2
votes
2answers
86 views
Using SetPrecision incorrectly [closed]
With the following 2 functions focus on the rows with the * comments. When the cout<< statement executes, there is no decimal place showing. 3021680380 /10000000 turns into 302. instead of ...
0
votes
1answer
265 views
Fortran - double precision array error
Im trying to run a code for a mathematical algo (Conjugate Gradient method) - in doing so I input a double precision matrix, defined as such in my preamble. When compiling, I get the follow error:
...
-2
votes
1answer
104 views
how can save a double type correctly in grails?
basically the domain to save not respect the floating point, as it makes it to another format
i have the next domain
class Location {
double latitude
double longitude
static belongsTo=[ ...
-2
votes
2answers
131 views
Visual Express 2010 double variable precision [closed]
I have just started out coding in c++ but have quite a bit of previous experience with MATLAB and MySql. I am trying to calculation some compounding numbers hence accuracy is key. I have tried to do ...
1
vote
1answer
115 views
MATLAB vpa() doesn't compute variable-point number for expression with exponent?
Trying to use vpa() to compute a variable point number for a rational expression in an exponent:
syms x;
ans1 = x^(12345/67890)
ans2 = vpa(x^(12345/67890),3)
ans2_5 = vpa((12345/67890),3)
ans3 = ...
-1
votes
1answer
30 views
Numerical accuracy [closed]
I am stuck with a computing question about an approximation error in double precision. The question asks for:
Suppose x and y can be represented without error in double precision. Can the same be ...
1
vote
1answer
169 views
CUFFT with double precision
I am experiencing some problems with CUDAs FFT library.
I declared the inputs as cuDoubleComplex, but the compiler returns the error that this type is incompatible with parameters of type ...
3
votes
2answers
155 views
Is integer multiplication implemented using double precision floating point exact up until 2^53?
I ask because I am computing matrix multiplications where all the matrix values are integers.
I'd like to use LAPACK so that I get fast code that is correct. Will two large integers (whose product ...
2
votes
7answers
218 views
How to determine whether a double variable has integer value?
I'm trying to find possible integer roots of a quadratic equation with Java.
Here is a snippet from my code:
double sqrtDiscriminant = Math.sqrt(b * b - 4 * a * c);
double root1 = ((-1.0 * b) - ...
6
votes
3answers
592 views
Formatting Double to print without scientific notation using DecimalFormat
I have been reading timestamp values from sensor readings, but since they are provided in nanoseconds, I thought I would cast them to double and make the conversion. The resulting number is a 17 digit ...
1
vote
3answers
307 views
double precision numbers into an array, then sort and display number from lowest to highest
In line 24, I am getting an error which is commented out. What is causing this and how to I get it fixed?
Any help is much appreciated. Thanks ahead of time. :)
import java.util.Scanner;
public ...
7
votes
3answers
349 views
Java - maximum loss of precision in one double addition/subtraction
Is it possible to establish, even roughly, what the maximum precision loss would be when dealing with two double values in java (adding/subtracting)? Probably the worst case scenario is when two ...
1
vote
0answers
69 views
quadmath in gdb
I am debugging with gdb and I find that the quadruple precision numbers are not
displayed properly. The code I am testing with is:
#include <stdlib.h>
#include <stdio.h>
#include ...
1
vote
2answers
80 views
What is the optimum epsilon/dx value to use within the finite difference method?
double MyClass::dx = ?????;
double MyClass::f(double x)
{
return 3.0*x*x*x - 2.0*x*x + x - 5.0;
}
double MyClass::fp(double x) // derivative of f(x), that is f'(x)
{
return (f(x + dx) - ...
-2
votes
4answers
186 views
Assigning 2^31 to a float or double [closed]
I have to multiply an integer value by 2^31. I have googled it, and it looks like doubles have a range among 2.23e-308 <= |X| <= 1.79e308 when using 64 bits, and a float among 1.18e-38 <= |X| ...
1
vote
1answer
682 views
stringstream setprecision and floating point formatting
double value = 02369.000133699;//acutally stored as 2369.000133698999900
const std::uint32_t left = std::uint32_t(std::abs(value) < 1 ? 1: (1 + std::log10(std::abs(value))));
std::ostringstream ...
0
votes
1answer
166 views
Bisection method lost of precision
I've been absent from this very nice forum for a while.
I'm taking a Numerical Analysis course and I was asked to program the bisection method, here's my code
/*
* Bisection.cpp
*
* Created on: ...
2
votes
1answer
444 views
GCC What's the right inline assembly constraint to operate with ARM VFP instructions?
I want to load the value of a double precision register (d8) into a C variable on ARM platform with a toolchain (gcc-4.6) that comes with the Google NDKv8b. My ARM machine is a Samsung Galaxy S2 (it ...
3
votes
2answers
89 views
Double precision problems when zooming in
I have this algorithm that calcuates the mandelbrot value of a point (x0,y0) (x0 and y0 are somewhere between -1 and 1 i thought, not very important). This is all going very well when scale isn't ...
0
votes
2answers
227 views
How to convert floating point input to integers and preserve maximum precision?
I have to use an algorithm which expects a matrix of integers as input. The input I have is real valued, therefore I want to convert the input it to integer before passing it to the algorithm.
I ...
0
votes
1answer
288 views
Double decimal places for coordinates
I am trying to convert a string to a double value to use it as a coordinate in an annotation.
I need the double value to have 5 decimal places to be placed on the map.
Let's say the string is hello ...
1
vote
2answers
266 views
cuda double precision logarithm error
I'm using C for CUDA on 3.0 computing capability and have to use
built-in logarithm function of double precision. I found that for
that purpose I should use double log(double x) function ...
1
vote
3answers
169 views
Which way is more accurate?
I need to divide a numeric range to some segments that have same length. But I can't decide which way is more accurate. For example:
double r1 = 100.0, r2 = 1000.0, r = r2 - r1;
int n = 30;
double[] ...
0
votes
2answers
173 views
How to know if a double string is round-trip safe?
I have a text representation of a double and want to know if it's safe to round-trip it to double and back. How do I know this if I also want to accept any kind of number-style of the input? Or how do ...
0
votes
3answers
211 views
What is the maximum precision for double data type in C?
To compare two double type variables in C, I have defined #define EQUALITY_EPSILON = 1e-8. I am doing the comparison as follows:
if((img_score[i] - img_score[j]) >= EQUALITY_EPSILON){
// ...
5
votes
2answers
191 views
when to use expm1 instead of exp in java
I am confused about using expm1 function in java
The Oracle java doc for Math.expm1 says:
Returns exp(x) -1. Note that for values of x near 0, the exact sum of
expm1(x) + 1 is much closer to the ...
1
vote
1answer
154 views
Calculating Markov chain probabilities with values too large to exponentiate
I use the formula exp(X) as the rate for a markov chain. So the ratio of selecting one link over another is exp(X1)/exp(X2). My problem is that sometimes X is very large, so exp(X) will exceed the ...
1
vote
1answer
336 views
NSDate timeIntervalSinceReferenceDate unexpected change in property [closed]
I´m facing a problem with a NSTimeInterval value I´m getting with [NSDate timeIntervalSinceReferenceDate]. At the code below, the value curTime apparently changes when set in my object CannonSmoke ...



