Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

26
votes
7answers
830 views

Emulate “double” using 2 “float”s

I am writing a program for an embedded hardware that only support 32-bit single-precision floating point arithmetic. The algorithm I am implementing, however, requires a 64-bit double-precision ...
17
votes
4answers
271 views

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() { ...
16
votes
4answers
182 views

C++: doubles, precision, virtual machines and GCC

I have the following piece of code: #include <cstdio> int main() { if ((1.0 + 0.1) != (1.0 + 0.1)) printf("not equal\n"); else printf("equal\n"); return 0; } When ...
9
votes
2answers
2k views

Does JavaScript have double floating point number precision?

I know it's an odd question, but does JavaScript have the capacity to work with double's as opposed to single floats? (64 bit floats vs. 32 bits.)
9
votes
3answers
726 views

Why is this bearing calculation so inacurate?

Is it even that inaccurate? I re-implented the whole thing with Apfloat arbitrary precision and it made no difference which I should have known to start with!! public static double bearing(LatLng ...
6
votes
6answers
553 views

How can I 'trim' a C# double to the value it will be stored as in an sqlite database?

I noticed that when I store a double value such as e.g. x = 0.56657011973046234 in an sqlite database, and then retrieve it later, I get y = 0.56657011973046201. According to the sqlite spec and the ...
5
votes
5answers
243 views

Tiny numbers in place of zero?

I have been making a matrix class (as a learning exercise) and I have come across and issue whilst testing my inverse function. I input a arbitrary matrix as such: 2 1 1 1 2 1 1 1 2 And got it to ...
5
votes
2answers
346 views

Fortran double precision program with a simple MKL BLAS routine

In trying to mix precision in a simple program - using both real and double - and use the ddot routine from BLAS, I'm coming up with incorrect output for the double precision piece. Here's the code: ...
5
votes
5answers
427 views

How to correctly and standardly compare floats?

Every time I start a new project and when I need to compare some float or double variables I write the code like this one: if (fabs(prev.min[i] - cur->min[i]) < 0.000001 && ...
5
votes
2answers
489 views

Does Fortran have inherent limitations on numerical accuracy compared to other languages?

While working on a simple programming exercise, I produced a while loop (DO loop in Fortran) that was meant to exit when a real variable had reached a precise value. I noticed that due to the ...
5
votes
6answers
402 views

Best base type to deal with linear algebra

I'm writing a small and inadequate linear algebra library in C++ for a project (I'm sorry). I'm implementing matrices and operations using double precision numbers. I'm doing right? Should I implement ...
4
votes
3answers
215 views

Help in double precision addition

I was testing some of my code, in javascript I added .1+.2 and it gives me .30000000000000004 instead of .3 . I don't understand this. But when I added .1+.3 it gives me .4. I googled it and find its ...
4
votes
3answers
316 views

host to network double?

I'd like to send some double precision floating point numbers over the network. (standard C, standard sockets) There is no htond or ntohd to convert the data to and from network byte order. What ...
4
votes
6answers
298 views

float to double assignment

Consider the following code snippet float num = 281.583f; int amount = (int) Math.round(num*100f); float rounded = amount/100.0f; double dblPrecision = rounded; double dblPrecision2 = num; ...
3
votes
3answers
62 views

Error due to limited precision of float and double

In C++, I use the following code to work out the order of magnitude of the error due to the limited precision of float and double: float n=1; float dec = 1; while(n!=(n-dec)) { dec = dec/10; ...
3
votes
2answers
224 views

What does the “double” do in ceil(double)?

I have a number (let's say, 34), and I want to find its next multiple of ten. I can do this by: Dividing the number by 10 Rounding it up to a whole number Multiplying by 10. After a bit of ...
3
votes
6answers
399 views

C# High double precision

I'm writing a function that calculates the value of PI, and returns it as a double. So far so good. But once the function gets to 14 digits after the decimal place, it can't hold any more. I'm ...
2
votes
1answer
116 views

Double-output precision is higher than double precision

I am printing some data from a c++ program to be processed/visualized by Paraview, but I am having the following problem: Paraview supports Float32 and Float64. Float64 is equivalent to double with ...
2
votes
2answers
1k views

MATLAB: Converting a uint32 (4-byte) value to the corresponding IEEE single-precision floating-point form

In MATLAB (r2009b) I have a uint32 variable containing the value 2147484101. This number (its 4-bytes) has been extracted from a digital machine-vision camera in a grabbing process. According to what ...
2
votes
1answer
438 views

NSDate and double precision problem

Here is the code NSDate* d = [NSDate dateWithTimeIntervalSince1970:32.4560]; double ti = [d timeIntervalSince1970]; NSLog(@"Interval: %f %f %f %f",ti,32.4560,ti*1000.0,32.4560*1000.0); the output ...
2
votes
5answers
218 views

C++: difference between 0. and 0.0?

I am well aware of the difference between 0 and 0.0 (int and double). But is there any difference between 0. and 0.0 ( please note the . )? Thanks a lot in advance, Axel
1
vote
4answers
44 views

double granularity affecting numeric comparisons c++

Below is a test block of code that is supposed to determine equivalency of 2 doubles within a tolerance. double lhs_1 = 0.02; double lhs_2 = 0.04; double rhs = 0.03; double tolerance = 0.01; bool ...
1
vote
3answers
194 views

how to fix double precision issue in java [closed]

Possible Duplicate: Java floats and doubles, how to avoid that 0.0 + 0.1 + … + 0.1 == 0.9000001? How can I overcome the precision issue with double multiplication in java ...
1
vote
1answer
140 views

Precision long double worse than double

When I use long double I get worse precision than using double. 3.14159265358979323846264L is this good to write long double const in source code or I should add something other than L? EDIT I solved ...
1
vote
3answers
239 views

C++ writing and reading doubles from a binary file

I want to perform disk I/O operations for a program that takes too much RAM. I use matrices of doubles and think writing them to disk as bytes is the fastest way (I need to preserve the double ...
1
vote
2answers
323 views

Accuracy of double precision multiplication in java?

What is the guaranteed accuracy of multiplication operator for double values in java? For example, 2.2 * 100 is 220.00000000000003, but 220 is a double number. 220.00000000000003 is the next double ...
1
vote
3answers
168 views

Java: Trigonometry and double inaccuracy causing NaN

I have a distance formula using latitude and longitude: distance = EARTH_MILES_RADIUS * Math.acos(Math.sin(lat1 / RADIAN_CONV) * Math.sin(lat2 / RADIAN_CONV) + Math.cos(lat1 / ...
1
vote
1answer
107 views

Doubles returned and bound to list view are truncated

I am query my sqlite data base for my Android app. I then use a simple cursor adapter to bind the data to a list view. there are two doubles being called from the database and on the list view the ...
1
vote
3answers
277 views

How accurate/precise is java.lang.Math.pow(x, n) for large n?

I would like to calculate (1.0-p)^n where p is a double between 0 and 1 (often very close to 0) and n is a positive integer that might be on the order of hundreds or thousands (perhaps larger; I'm not ...
1
vote
1answer
145 views

Subtracting 2 different doubles yields zero

I'm building a loc-based app, using CLLocationManager and locationManager:didUpdateToLocation: fromLocation: I'm trying to determine if the user has moved enough to trigger some other processing. I'm ...
1
vote
2answers
227 views

Matlab: Storing large numbers in Matlab

For storing large numbers I am refering to the next: 2.7182818284590455348848081484902650117874145507812500 I can“t save this with double precision floating-point format (IEEE754) Thank you.
1
vote
1answer
756 views

double precision integer subtraction with 32-bit registers(MIPS)

I am learning computer arithmetic. The book I use(Patterson and Hennessey) lists the below question. Write mips code to conduct double precision integer subtraction for 64-bit data. Assume the ...
1
vote
2answers
176 views

TimeSpan and double rounding errors

I'm dealing with physical entities, such as time, speed and distance, and performing simple math, such as distance = time * speed, etc. Speed and Distance are double values rounded to 8th digit, and ...
1
vote
2answers
311 views

How to set double precision in C++ on MacOSX?

I'm trying to port _controlfp( _CW_DEFAULT, 0xffffffff ); from WIN32 to Mac OS X / Intel. I have absolutely no idea how to port this instruction... And you? Thanks!
1
vote
9answers
361 views

Floating point arithmetic is too reliable

I understand that floating point arithmetic as performed in modern computer systems is not always consistent with real arithmetic. I am trying to contrive a small C# program to demonstrate this. eg: ...
1
vote
6answers
243 views

The trade-off that comes with using BigDecimal instead of double in Java

I'm writing code for a neural network, and I'm wondering whether I should do it or not. I'm actually somewhat worried that even using double might not wield good results and that I might have to ...
0
votes
0answers
48 views

Glib: g_ascii_dtostr imprecise?

I am a little bit intrigued by the way some glib functions such as "g_ascii_dtostr" (and the GKeyFile functions using doubles) work. Consider this line: gchar buf[30]; g_message("Double: %f, as ...
0
votes
2answers
52 views

Precision not working or devcpp failure in long double

I have used this : long double f =79228162514264337593543950336.0;//maximum ; 2 ^ 96 because f is 12 bytes cout.precision(30); cout<<f; But some numbers turns wrong . why ?
0
votes
3answers
47 views

Floating point error in representation?

when i make this multiplication 0.94 * 8700 the output is 8177.999999999999 but it should have been 8178 i'm using java , but i don't think this error is related to a particular ...
0
votes
1answer
128 views

C++ writing and reading matrices of doubles from a binary file

Here comes a new issue after my previous question : I've extended the code to perform matrix binary files I/O and when testing a simple write and read operation, I retrieved only the first line of ...
0
votes
2answers
118 views

Converting/expressing double number in non-exponent/short form in Javascript

I have a double in Javascript whose value is, for example, 1.0883076389305e-311. I want to express it in the following form, using as example the 'bc' utility to calculate the expanded/higher ...
0
votes
2answers
315 views

IEEE-754 floating-point precision: How much error is allowed?

i'm working on porting the sqrt function (for 64-bit doubles) from fdlibm to a model-checker tool i'm using at the moment (cbmc). As part of my doings, i read a lot about the ieee-754 standard, but i ...
-1
votes
6answers
396 views

Java Doubles are not good at math [closed]

I am currently writing a calculator program in java. It is my first java program, I am used to c++. I have noticed that doubles in java are not at all like doubles in c++. try this in java and c++ ...