Tagged Questions
0
votes
1answer
18 views
BigDecimal in JavaScript
I'm very new to JavaScript (I come from a Java background) and I am trying to do some financial calculations with small amounts of money.
My original go at this was:
<script ...
2
votes
3answers
52 views
Compute the double value nearest preferred decimal result
Let N(x) be the value of the decimal numeral with the fewest significant digits
such that x is the double value nearest the value of the numeral.
Given double values a and b, how can we compute the ...
3
votes
1answer
61 views
Is scaling of floats by ten always precise
Would scaling a float value by ten to preserve precision during a calculation be always precise?
This question only applies for any number involved being less than Math.pow (2,53) and greater than ...
0
votes
1answer
33 views
Why does JavaScript insist on converting floats to integers?
I noticed that if I do in JavaScript:
var dict = { "foo" : 1.0 };
when retrieving dict I will get:
{ foo : 1 }
What is the rationale behind this? And what is the preferred way of avoiding it (I ...
-4
votes
0answers
35 views
Why is 0.1 + 0.2 !=== 0.3 ? (Javascript) [duplicate]
I don't understand floating point rounding errors - for example, why is 0.1 + 0.2 actually 0.30000000000001 and not 0.3 exactly?
0
votes
2answers
86 views
Converting float values to a grayscale hex color value
this question is quick and simple.
I've a 2d array of floats ( 0,0000000 to 1,0000000 ) and i want to convert those numbers to a color value ( #000000 to #ffffff ).
note that i'm talking about just ...
-1
votes
2answers
38 views
How do I result in a Float number with 2 integers?
var ratings = 3193;
var reviews = 9;
var average = parseFloat(ratings) / reviews; //I want a floating point number at the end.
Is this the right way to do it?
1
vote
2answers
68 views
Convert “float” to bytes in Javascript without Float32Array
Okay so I'm an a fairly annoying situation where I don't have access to typed arrays such as Float32Array, but still need to be able to convert a Javascript number into bytes. Now, an integer I can ...
-1
votes
1answer
64 views
Math.pow() floating point number as exponent
I want to pass a floating-point number as the second argument (exponent) to Math.pow(). I always get NaN when the passed number is not a whole number, like 0, 2, 7, you name it. Is there a working way ...
-1
votes
2answers
55 views
regex for floating positive and negative and 6 decimals
I am a newbie with regex, I need a regex for number between -180 and 180 integer or float with a maximum of 6 decimals
1
vote
3answers
44 views
How do I round only floating digit in JavaScript? [duplicate]
I have a javacript output 14.85 now
i want to make it 14.90 for 14.85
and for 14.84 i need it to 14.80,
Is it possible ?
thanks
2
votes
4answers
1k views
How to handle floats and decimal separators with html5 input type number
Im building web app which is mainly for mobile browsers. Im using input fields with number type, so (most) mobile browsers invokes only number keyboard for better user experience. This web app is ...
0
votes
3answers
123 views
How to add integer and float using javascript?
I am using the below code to add integer and float value using JavaScript. But I can't do this, it returns NaN. I am new to development. Please help me to solve this.
lbl_bal_total.value = ...
1
vote
3answers
108 views
Would this be a reliable way to deal with rounding errors when multiplying floating point numbers in Javascript?
I am adding client-side sub-total calculations to my order page, so that the volume discount will show as the user makes selections.
I am finding that some of the calculations are off by one cent ...
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 ...
2
votes
3answers
132 views
How to test whether a float is an integer “within machine precision”?
The brief version of my question is:
What's considered "best practice" for deciding when a floating point number x and Math.round(x) may be considered equal, allowing for loss of precision from ...
3
votes
1answer
227 views
Math.pow with negative numbers and non-integer powers
The ECMAScript specification for Math.pow has the following peculiar rule:
If x < 0 and x is finite and y is finite and y is not an integer, the result is NaN.
...
3
votes
1answer
93 views
While 3 * 0.1 cannot be represented exactly, why can Javascript properly calculate 0.15 * 2? [duplicate]
Possible Duplicate:
Is JavaScript’s Floating-Point Math Broken?
In Javascript,
3 * 0.1 = 0.30000000000000004
I think this is due to the language's number system where 0.3 cannot be ...
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
...
9
votes
5answers
314 views
Why are floating point numbers printed so differently?
It's kind of a common knowledge that (most) floating point numbers are not stored precisely (when IEEE-754 format is used). So one shouldn't do this:
0.3 - 0.2 === 0.1; // very wrong
... as it will ...
2
votes
2answers
113 views
Optimizing javascript code to use integer arithmetic
There are some algorithms which solve problems "very well" under the assumption that "very well" means minimizing the amount of floating point arithmetic operations in favor of integer arithmetic. ...
0
votes
2answers
69 views
Why does someNum - Math.floor(someNum) give me different decimal numbers
I have some simple javascript which I want to use to determine if a number needs to be rounded.
Example: User enters 1.2346 and the number is rounded to 1.235 and a message should be displayed to the ...
4
votes
1answer
68 views
Are 40-bit integers represented exactly in JavaScript?
I'm using a server-side calculation which needs to generate (with * and + operations) and compare 40-bit integers. I'm aware that at that point the V8 engine stores the numbers as Double rather than ...
0
votes
3answers
158 views
Floating point issue. JavaScript
Basically my question is: Why do I get value as 130.00000000000003 instead of 130.0 ?
I just outputted everything that goes under the hood and hope it's clear enough. I know it's most likely the ...
0
votes
1answer
110 views
Why does 143.55 equal 143.54999999999 in javascript? [duplicate]
Possible Duplicate:
Is JavaScript’s Math broken?
I'm running a few very basic functions in javascript to try and convert a float to a currency. For example:
var vhsTiers = Array(15.90, ...
2
votes
8answers
251 views
Floating point representations seem to do integer arithmetic correctly - why?
I've been playing around with floating point numbers a little bit, and based on what I've learned about them in the past, the fact that 0.1 + 0.2 ends up being something like 0.30000000000000004 ...
-1
votes
1answer
239 views
Using Math.round in javascript adds weird number of 0s at the end [duplicate]
Possible Duplicate:
Is JavaScript’s Math broken?
I'm using Math.round to round the number and for some reason it adds weird number of 0s at the end which should not be there. Here is my ...
2
votes
2answers
346 views
javascript float number comparison
I tried to do some sort of "random generator" - there are several adjacent points and depending on their brightness they are more or less likely to be chosen.
a point is an object with x and y ...
0
votes
2answers
667 views
Float sum with javascript [duplicate]
Possible Duplicate:
Is JavaScript's Math broken?
I'm calculating the sum of several float values using javascript and... I've noticed a strange thing never seen before. Executing this ...
0
votes
2answers
147 views
Variable is different when using it directly
The Javascript engine of Google Chrome does something strange with the variable values in this prototype.
The prototype is defined with:
function matrix4def()
{
this.m00=0;
this.m01=0;
...
0
votes
4answers
216 views
Determine if a floating point number is a multiple of another floating point number?
I need to determine if a floating point number is a multiple of another floating point number using JavaScript.
I've read some other questions about floating point numbers and I've learned that they ...
0
votes
1answer
140 views
floating point 0.2 + 0.1 rounding error [duplicate]
Possible Duplicate:
Is JavaScript's Math broken?
I came across this rounding issue:
When I do this:
.2 + .1 results in 0.30000000000000004
.7 + .1 results in 0.7999999999999999
...
4
votes
1answer
63 views
floatingpoint comparing in javascript
how is this posible that 100 >= 99.2 is false?
var ls = parseFloat(("100").replace(",", ".")).toFixed(1);
var val = parseFloat(("99,2").replace(",", ".")).toFixed(1);
alert(ls >= val); /*=> ...
3
votes
2answers
113 views
In JavaScript, is there a way of parsing JSON that turns numbers into strings?
As JavaScript uses floating point maths for all numbers, which does not preserve precision in all cases, I want to parse a JSON object containing numbers but generate strings in the returned ...
0
votes
1answer
180 views
Using parseFloat() or parseInt() and regex in JavaScript (converting a CSV file)
I'm converting a CSV file to a local 2D array. I wanted to know if there is a better way to convert strings to floats/int rather then using regex followed by a parseFloat() / parseInt.
Ideas / ...
2
votes
2answers
163 views
Javascript casts floating point numbers to integers without cause
I wrote a function that behaves differently depending on the numeric type of it's parameters. Integer or float.
Using some code from this question How to check if a number is float or integer? it was ...
0
votes
2answers
161 views
Javascript rounding issue when summing values [duplicate]
Possible Duplicate:
Is JavaScript's Math broken?
The user enters values in the first two text boxes and, as they type, Javascript (sorry, no jQuery, I'm not up to it yet) is used to ...
3
votes
4answers
3k views
Dealing with float precision in javascript
Suppose for I have a large amount of numeric values y, and I want to group them by rounding them down to the nearest multiple of x and convert the result to a string. How do I get around the annoying ...
1
vote
3answers
361 views
javascript regex float number which ends with string
Learning regex but this one gives me a headache. I need to match a float number (with either . or , as decimal point) and it MUST end with the following characters: €/g.
Valid matches should be for ...
0
votes
1answer
178 views
JavaScript and Dealing with Floating Point Determinism
I'm looking to build a browser multiplayer game using rollback netcode that runs a deterministic simulation on the clients. I prototyped the netcode in Flash already before I ran into the floating ...
3
votes
4answers
950 views
How can I encode two numbers in a single Integer?
I have the need to store a range of values (like 25-50 or 100-200), however to avoid a lot of database re-design and other work, I want to use a single Int32 to store both these numbers. I realize ...
2
votes
1answer
155 views
JavaScript floating point curiosity
I tried doing some floating point comparison and here is what I found:
130 === 130.000000000000014210854715 // true
130 === 130.000000000000014210854716 // false
9 === 9.0000000000000008881784197001 ...
0
votes
3answers
187 views
IEEE 754: Javascript vs C
From what I understand, the famous
(0.1 + 0.2) !== 0.3
gotcha is not actually Javascript's fault. Thats just the way the IEEE 754 works. A similar output happens in Python, which also follows the ...
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)?
...
1
vote
3answers
944 views
Round a float up to the next integer in javascript
I need to round float to the next integer even if the number after the point is less than 0.5 im javascript
4.3 should be 5 not 4
4.8 should be 5
any suggestions?
1
vote
1answer
3k views
parseDecimal in JavaScript?
I have some JS calculations going on. Since floating point arithmetic often uses close approximations to numbers instead of exact values, if you round these floating point number to fixed precision, ...
5
votes
4answers
696 views
Issue with jQuery data() treating string as number
I have a MySQL BIGINT that I am storing in HTML5 data. Then I'm trying to access that value and pass it through an AJAX call.
<div data-id="211285677671858177">
And the JavaScript:
var ...
9
votes
2answers
235 views
Adding to Number.MAX_VALUE
The answer to this question may be painfully obvious but I can't find it in the Mozilla docs nor on Google from a cursory search.
If you have some code like this
Number.MAX_VALUE + 1; // Infinity, ...
-1
votes
4answers
125 views
1
vote
2answers
96 views
Javascript - Prices and floats
I'm performing a number of operation on prices i.e. decimal numbers such as 999.99
Problem is I can't find an alternative to working with floats in JavaScript.
Floats aren't perfectly accurate, and ...
