9
votes
1answer
78 views

Why does float.parse return wrong value?

I have a problem. when I parse a string like "0.005" to float or double, it works fine on my computer, but when i install my program to my client's computer, it returns 5. (both my computer and my ...
-1
votes
2answers
34 views

Avoiding floating point overflow?

Is it possible to avoid floating point overflow? If so, how? If not, what if you use your own representation of a floating point number- is there some different way you can create to represent it ...
1
vote
1answer
61 views

Merge Sort on an array of floating point numbers of fixed size 25 (C programming language)

My code is as follows: void mergeSort(float a[], int first, int last) { //Function performs a mergeSort on an array for indices first to last int mid; //if more than 1 element in ...
1
vote
1answer
107 views

Reading an array with floating point numbers (C programming language)

I am creating a function to read in inputs from the user and put them into a floating point array of numbers with predetermined fix size of 25. It also returns the total amount of items that the user ...
0
votes
1answer
90 views

Round float values accurately with output required decimal point in Objective-C [closed]

How to round a float value like 1.449567 accurately. The output value should be required decimal point floate value. Output should be like this: for 1 decimal point **f=1.5** for 2 decimal point ...
0
votes
2answers
55 views

How to perform MySQL 'SUM' but to '0' decimal places?

I have a MySQL table containing account balances, which are stored as floats, with two decimal places, in a varbinary column type (because the values are AES_ENCRYPTED). I realise that it's not ideal ...
3
votes
1answer
100 views

Maximum and minimum exponents in double-precision floating-point format

According to the IEEE Std 754-2008 standard, the exponent field width of the binary64 double-precision floating-point format is 11 bits, which is compensated by an exponent bias of 1023. The standard ...
1
vote
3answers
62 views

small numbers java [duplicate]

I am trying to divide two numbers in java - more specifically I have the fraction 800/9177 and want to convert it to a double or float or w/e. My problem is when I try to get the value of the ...
0
votes
2answers
78 views

PHP function for float or double comarision (bccomp and gmp_cmp)

PHP Suggested to use these function for floating point number comparison [here] bccomp — Compare two arbitrary precision numbers int bccomp ( string $left_operand , string $right_operand [, int ...
5
votes
4answers
222 views

What is the optimal way of representing a floating point number in a range from 0 to 1?

I'm looking for a numeric type able to represent, say, a value 0.213123 or 0.0, or 1.0, but refusing the out of range values, such as -0.2123 and 1.2312. Does there exist a specific type fitting that ...
1
vote
2answers
58 views

64-bit float on 32-bit CPU [closed]

It's well-known fact that all numbers in JavaScript are 64-bit floating point numbers (double precision). But what if i have 32-bit CPU? How does it (JS interpreter) work then? Does JS interpreter ...
1
vote
2answers
284 views

How to generate uniformly distributed random floating point numbers on entire possible range in matlab

I am trying to generate an array of uniformly distributed floating point values in single precision in MATLAB. I want to generate all numbers in the range +/- (2-2^-23)*2^127 which represents the ...
0
votes
0answers
33 views

Javascript: Working with floats ( 1.1 anyhow special? ) [duplicate]

Possible Duplicate: Is JavaScript’s Floating-Point Math Broken? So I'm just looking for a quick explanation for this JS Console test: > 1.2 + .1 1.3 > 1.1 + .1 1.2000000000000002 ...
30
votes
6answers
1k views

Double multiplied by 100 and then cast to long is giving wrong value

I have the following code: Double i=17.31; long j=(long) (i*100); System.out.println(j); O/P : 1730 //Expected:1731 Double i=17.33; long j=(long) (i*100); System.out.println(j); O/P : 1732 ...
1
vote
3answers
192 views

Adding 1 to very small numbers

I have a question about adding the number 1 to very small numbers. Right now, I am trying to plot a circular arc in the complex plane centered around the real number 1. My code looks like: arc = 1 + ...
0
votes
2answers
242 views

c/c++ notation of double floating point values

What's the notation for double precision floating point values in C/C++? .5 is representing a double or a float value? I'm pretty sure 2.0f is parsed as a float and 2.0 as a double but what about ...
2
votes
1answer
217 views

Checking if floating point number is whole number in tcl

I am new in tcl. I am trying to check if a given number is a whole number but can't seem to find a simple way to do this. So I have a number2 which is checking if it is on grid. If not a whole number ...
3
votes
2answers
119 views

Should I always use the appropriate literals for number types?

I'm often using the wrong literals in expressions, e.g. dividing a float by an int, like this: float f = read_f(); float g = f / 2; I believe that the compiler will in this case first convert the ...
0
votes
2answers
94 views

objective c float numer conversion

float f2,f1 = 123.125; what is different between them? float f1 = 123.125,f2; if I write code as float f1,f2 = 123.125 the program will has different result here is the full program ...
1
vote
3answers
114 views

Filter lines containing floating numbers that are larger than X.Y

I am trying to make a very simple shell script that frees up some memory space. For this, I am using command $ ps xopmem o%c to output a list of running processes with its percentual memory usage. ...
3
votes
5answers
165 views

PHP integer part padding

I need to pad the integer part with 0, the integer part must be at least 2 characters str_pad( 2 ,2,"0",STR_PAD_LEFT);// 02 -> works str_pad( 22 ,2,"0",STR_PAD_LEFT);// 22 -> works ...
0
votes
4answers
118 views

Javascript adding extra precision when doing additions [duplicate]

Possible Duplicate: Is JavaScript's Math broken? Any ideas as to why: (872.23 + 2315.66 + 4361.16) == 7549.05 return false in a Javascript console (e.g. Chrome Developer console)? ...
14
votes
8answers
1k views

Why aren't rational numbers implemented and stored as fractions with zero loss of information? [closed]

I know this is a bit hypothetical but I am wondering why no language I know does it. For example, you want to store 1/3. Give the programmer an option to specify it as 1/3, and store 1 and 3. ...
4
votes
1answer
664 views

Error on JSON.parse when parsing a big number

My problem is really simple but I'm not sure there's a "native" solution using JSON.parse. I receive this string from an API : { "key" : -922271061845347495 } When I'm using JSON.parse on this ...
1
vote
2answers
487 views

Java Detect Whether Float Is Positive or Negative

I'm working with Android gestures and the onFling method. There are two float variables get passed velocityX and velocityY. Theses can either be 0.0, positive or negative. Obviously the 0.0 is easy to ...
2
votes
3answers
106 views

How can I resolve these problems with numbers?

I still have troubles with numbers in Vim: p.e. let a = 1.02 | let b = '10000000' | let total = a*b | echo total --> 1.02e7 I would like to avoid Exponentials. How can I have the output ...
1
vote
1answer
58 views

What can be the error in this float calculation?

I always have a lot of troubles with variables: float, string and numbers. Can anyone tell me why this doesn't work? What did I wrong? let beforeE = '2.18' let nrzeros = '000' let newnr = ...
5
votes
1answer
341 views

Extended Precision Floating Point Library C/C++

I am looking for an extended precision floating point library with the following features: fixed data type size (i.e. the extended precision float takes a fixed amount of memory) no initialization ...
0
votes
5answers
974 views

C# wrong subtraction? 12.345 - 12 = 0.345000000000001 [closed]

I am beginner in C# and I am working with floating point numbers. I need to do subtraction between these two numbers but it does not work. I know it is caused by floating point number, but how can I ...
-2
votes
1answer
472 views

print floating point number assembler 8086

I'm trying to print a floating point number using assembler 8086 and tasm!!! But i don't have any idea about how to do this. I have the number in a variable like this: var dd 3.14235565212 Can ...
0
votes
1answer
190 views

Decimal numbers cutting

I put a number in EditText line and it counts a double value in another. But the double value of 4.8 should be 9.6 and not 9.6000000381469727. I know it is normal for float but I would like to cut the ...
2
votes
2answers
93 views

Floating point calculation

Apologies for an ambiguous title. My problem is this: Given a vector of doubles w with entries less than one, a second vector of doubles v with positive entries that sum to less than one (computed ...
1
vote
2answers
389 views

Parse a string to floats with different separators

I have a number of strings that represent numbers which use commas or points to separate thousands and have different floating separators. For example: "22 000,76", "22.000,76", "22,000.76", ...
-1
votes
2answers
342 views

How double precision floating point number is stored and calculated?

I'm really curious about how Double Precision Floating point number is stored. These are things I figured out so far. They require 64 bits in memory Consist of three parts ...
1
vote
1answer
285 views

How to get number of floats in file?

I have a file with float numbers, here is an example: 0.01 0.24 0.08 0.15 0.7 0.22 0.05 0.28 0.4 0.44 0.8 0.55 Now I need to get number of all floats (in this case 12). Empty lines should be ...
0
votes
1answer
89 views

What kind of binary numeric representation is this?

I have these numbers from an old database file and I'm looking for the numeric representation this uses. The numbers are stored as binary format, and they're supposedly 64-bit floating numbers, ...
2
votes
3answers
74 views

Partitioning a file for parallel download

I want to make a multi-threaded downloader (in Python) and I need to tell each thread where to start and how many bytes to download. For that I get the remote file size and divide it, for example, to ...
0
votes
4answers
403 views

How to read unknown number of floats from a file? [duplicate]

Possible Duplicate: C dynamically growing array I have a program and I need to read floats from a file. Each line is one float number. The problem is that this file may be very large ...
5
votes
2answers
4k views

How to compare two floating point numbers in a bash script?

I am trying hard to compare two floating point numbers within a bash script. I have to variables, e.g. let num1=3.17648e-22 let num2=1.5 Now, I just want do a simple comparison of these two ...
2
votes
2answers
234 views

Irrational number representation in computer

We can write a simple Rational Number class using two integers representing A/B with B != 0. If we want to represent an irrational number class (storing and computing), the first thing came to my ...
2
votes
3answers
438 views

Incrementing decimal numbers in C#

I'm making my way through the beginners tutorials for XNA (C#) and have veered off in my own direction once I learned rendering and positioning, having my own game development experience. I'm trying ...
1
vote
1answer
253 views

Printing float values with sprintf

Right now I have: printf('Rating: %.2F', $rating); which prints like: 4.00 How can I show the leading zero, only if there is something to show after it? For example: 4.00 should be 4 4.20 ...
2
votes
5answers
241 views

0 multiply number in floating point

as you know single number will save in memory by following format: (-1)^s * 1.f * 2^e: and zero will save like that: 1.0000000000000000 * 2 ^ -126 now If I multiply it to another floating point ...
0
votes
4answers
209 views

How did we get this real number in binary?

from this article: the number 5.125 (binary 101.001) why? 101 is 5 , but how are decimal places converted? Also from that article - a bias is added to the actual exponent e. What is bias? What ...
0
votes
3answers
2k views

iPhone - Storing a double value into a NSDictionary with only 7 decimals as a Number type

I have a PList that contains a dictionary with some decimal values like 10.1234567, stored as Number type (tag ). In my app, I read that plist and manipulate those values as NSNumber (double type ...
0
votes
2answers
130 views

Why is my Float Variable Holding Whole Numbers?

I've been glancing at this code for a while now, and I can't seem to figure out what the probably simple error is... In short, I have a float variable in Java that seems to only be storing the integer ...
0
votes
2answers
236 views

Problem with floating point comparison

I am trying to check if a value I read from a text file is zero: [[ $(echo $line | cut -d" " -f5) -gt 0 ]] && [[ $(echo $line | cut -d" " -f7 | bc -l) -eq 0 ]] With the first condition ...
1
vote
2answers
163 views

Why is 10000000000000.126.toString() 1000000000000.127 (and what can I do to prevent it)?

Why is 10000000000000.126.toString() 1000000000000.127 and 100000000000.126.toString() not? I think it must have something to do with the maximum value of a Number in Js (as per this SO question), ...
5
votes
4answers
334 views

Difference in accuracy with floating point division vs multiplication

Is there a difference between this: average = (x1+x2)/2; deviation1 = x1 -average; deviation2 = x2 -average; variance = deviation1*deviation1 + deviation2*deviation2; and this: average2 = (x1+x2); ...
2
votes
3answers
1k views

Converting money formatted strings to floats

I have to read a rather large file, containing numbers, formatted in different ways. I have tried using the builtin floatval() function. This function works on some numbers, such as 22000.76, but not ...

1 2