Rounding a numerical value means replacing it by another value that is approximately equal but has a shorter, simpler, or more explicit representation.

learn more… | top users | synonyms

1
vote
3answers
37 views

Round a Floating Point Number Down to the Nearest Integer?

As the title suggests, I want to take a floating point number and round it down to the nearest integer. However, if it's not a whole, I ALWAYS want to round down the variable, regardless of how close ...
0
votes
1answer
9 views

SQL Server - single Inline Query - (decimal remainder of x/y (rounded to 6 characters) ) / z

Can I ask for help on a SQL Statement please, I have to do the calculation inline and cannot declare variables for it Calculation: -91000000 / 2700000 = -33.7037037037 I need the remainder ...
-1
votes
2answers
43 views

Round an integer in increments of 5 [duplicate]

I want to increment an integer value in increments of 5. Examples would be: 233 to 235, 437 to 435, and say a corner case such as 298 to 300. I feel like I should divide by 5.
2
votes
1answer
54 views

Why does my long integer change a tiny bit?

In my Java servlet, I generate a 64 bit integer every time a certain request is made. I then send this long in two directions: 1) as a JSON-encoded reply to the HTTP Get caller 2) into a MySQL ...
-3
votes
1answer
87 views

Most significant decimal digit (or 0.3 - 0.1 = 0.1 ) [closed]

This operation should return 2, but it returns 1 instead because of the floating point representation: a <- .3 b <- .1 floor((a-b)*10) I basically want the first digit after the point, of the ...
0
votes
1answer
27 views

How can you round the value of Javascript x and y coordinates [duplicate]

I am displaying this variable, var coords = 'Co-ords(' + hero.x + "," + hero.y + ')'; however when it displays it comes up like massive numbers like 294.99999999999 How can I round this down to ...
-1
votes
5answers
117 views

Rounding numbers in C# producing too many decimal places

I'm trying to round a float down to 6 decimal places. Converting from double to float seems to pretty much do this, however in the process I've noticed some weirdness. Whatever I do I seem to end up ...
4
votes
2answers
55 views

Rounding to the nearest half (NOT the nearest whole)

I need to round a double to the nearest .5. I do not want to end up with a number ending in .0. I've searched around for a bit, but it seems like everyone wants to round to the nearest multiple of .5 ...
2
votes
0answers
38 views

round a date in R to an arbitrary level of precision

I'm looking to group dates in R by an arbitrary level of precision. It's pretty straightforward to do this to the nearest hour or minute, using e.g. lubridate: library(lubridate) nearest_hour = ...
2
votes
2answers
67 views

Clojure: Inconsistent Rounding in Subtractions

I am working on a piece of code where numerical equality is an important factor in several logical conditional. Clojure is doing something I dont know enough about to explain. For example: ...
3
votes
1answer
63 views

R, rounding, ceiling and floors

Suppose that one has a bunch of data returned from pnorm(), such that you've got numbers between .0003ish and .9999ish. numbers <- round(rnorm(n = 10000, mean = 100, sd = 15)) percentiles ...
1
vote
1answer
174 views

css calc function bug in IE

EDIT As @Joe pointed out in his answer, the problem here with IE has nothing to do with media queries. I have therefore updated the old title: ("media queries GLITCH in IE") with the current one. ...
2
votes
1answer
50 views

Rounding to specified absolute decimal precision in C90/99

I am working on software that, among other things, converts measured numbers between text and internal (double) representation. A necessary part of the process is to produce text representations with ...
5
votes
2answers
71 views

Math.round bug - what to do?

Math.Round(8.075, 2, MidpointRounding.AwayFromZero) returns 8.07, though it should return 8.08. Mysteriously enough, 7.075 is working fine, but 9.075 also returns 9.07! What to do? Does anybody know ...
1
vote
4answers
42 views

Non Decimal Numbers on Math.ceil or Math.round in JavaScript?

I want to use Javascript to round up a number. For example like this, 15 => 20 345 => 400 201 => 300 180 => 200 93 => 100 22 => 30 How to achieve this using Javascript? I know i ...
1
vote
1answer
46 views

Paypal Rounding Algorithm

Does anyone know what algorithm Paypal uses to round? I'm doing some testing with discount promo codes on my site, and I'm coming up with different totals than what Paypal comes up with when I pass ...
0
votes
0answers
29 views

Recursive rounding method (academic assignment) [duplicate]

I'm stumped by this problem, which is stated as follows: "Write a recursive method that takes a decimal number x and an integer n. Round x to n decimal places (for example, 0 means round to the ...
0
votes
2answers
59 views

How to stop Java from rounding my numbers so I can solve Problem3

So I've been doing some Project Euler lately, but for some reason, my code just doesn't work because Java keeps rounding my divsions. public class Problem3 { /** * @param args */ public static ...
0
votes
1answer
60 views

Rounding error gives me invalid answer

I'm having a problem with rounding. For some reason I can't round testP to the tenth place. For example, on the first given example (Alex Smith) it gives me the answer of 82.0, but it should be 82.6. ...
0
votes
1answer
59 views

Understanding of Rounding IEEE Floating PointNumber

I am writing a rounding scheme for a Floating point adder.I don't know what happens for a few values, I tried reading the manual but can't figure it out. To code , I can think of if .. else or case ...
4
votes
5answers
107 views

How can I round manually?

I'd like to round manually without the round()-Method. So I can tell my program that's my number, on this point i want you to round. Let me give you some examples: Input number: 144 Input rounding: 2 ...
0
votes
1answer
33 views

Round to nearest multiple with offset in JS

I have a number I want to round to the nearest multiple of X with an offset. For example, how would I round a number to the nearest number that is 5 more than a multiple of 12 (ie 5, 17, 29...)?
1
vote
1answer
38 views

Float Precision and Removing Rounding Errors in Scheme

I have a procedure that returns a float to three decimal places. >(gpa ’(A A+ B+ B)) 3.665 Is there any way to round this to 3.67 in Scheme? I'm using SCM version 5e7 with Slib 3b3, the ...
0
votes
1answer
44 views

Rounding a number with special conditions

I need to create a function which rounds numbers like this: 33120->34000 21001->22000 here are no decimal points but if there exist a number other than 1 in the last 3 digits the 4th digit must be ...
0
votes
0answers
85 views

Rounding and Decimal not working in Python Networkx

I am using this tree to do option pricing so the decimals are relevant but not extremely. When n>8, I don't know why bur the function I have to detect duplicates is not working well. I believe the ...
6
votes
4answers
98 views

How do deal with infinitely repeating numbers as decimals?

When division results in an infinitely repeating number, the number obviously gets truncated to fit into the size of the decimal. So something like 1/3 becomes something like 0.3333333333333333333. If ...
0
votes
2answers
40 views

Javascript: Need workaround for automatic rounding

I have a javascript calculation to do: var temp = ((1 + 0.07)^(1/12))-1; The actual answer for this is: 0.00565414539 On the ^(1/12) (0.833..) you get 1.00565414539 However, Javascript ...
1
vote
2answers
131 views

lua - How to get decimals to round down on the half

I'm using this function to round currently: function round(val, decimal) if (decimal) then return math.floor( (val * 10^decimal) + 0.5) / (10^decimal) else return math.floor(val+0.5) ...
2
votes
1answer
64 views

Using LIKE to match floats when Rounding is not wanted

So here is what I am trying to accomplish. I have coordinate data in two tables, which I am trying to link together with an Association table. It is a one to one association, so if I have 40 records ...
3
votes
4answers
110 views

Prevent Rounding to Zero in Python

I have a program meant to approximate pi using the Chudnovsky Algorithm, but a term in my equation that is very small keeps being rounded to zero. Here is the algorithm: import math from decimal ...
0
votes
2answers
80 views

How to round a floating-point to the nearest .001

Can someone give me some tips on how to round a floating-point to the nearest .001 in Assembly (MASM)? I have 2 integers. I need to show the quotient as a floating-point number (num_1 / num_2). I ...
0
votes
3answers
62 views

Rounding double value into two significant digits in java [duplicate]

I want to get a function which rounds the double value into two significant digits now i m using the below function private static DecimalFormatSymbols DFS; private static DecimalFormat ...
0
votes
2answers
114 views

F# round up to a specific number of decimal places

for example I can use System.Math.Round((float),2)to round my float to the nearest 2 decimal places, but is there anyway in F# that i can round up my float to 2 decimal places? Thanks
1
vote
2answers
108 views

CSS: Em rounding error

Recently, I've rewritten the CSS file for a site I'm making and tried to make most elements and fonts dynamic in size using em instead of px. The sizes work.. kind of, but there's at least one issue. ...
1
vote
1answer
61 views

How is Python's ROUND_HALF_EVEN supposed to handle decimals smaller than 1?

It appears that in every definition I can find of round half to even includes nearest even integer (e.g., Python's decimal documentation), as if ONLY integers are rounded to. However, if I round ...
1
vote
1answer
101 views

How to show rounded numbers on a form (to 2 decimal places), but still let people edit and submit the full numbers?

I have a form on my MVC3 site (I also use EF, but it's not relevant). Now, this form consists of multiple input boxes in which users provide some numbers (decimal). The request from the user is to use ...
0
votes
1answer
21 views

remove only decimal place and not comma

Please i have 123,788.98, I want to remove the decimal place before storing in dbase so as to have just 123,789. I tried round(123,789.98) but it gives me just 123. Please how can remove the decimal ...
4
votes
3answers
227 views

Round a Python list of numbers and maintain the sum

I have a list or an array of decimal numbers in Python. I need to round them to the nearest 2 decimal places as these are monetary amounts. But, I need the overall sum to be maintained, i.e. the sum ...
-1
votes
2answers
75 views

floatint point inaccuracy

Mixing int and double produces a strange result in the following program: int main() { double x = 9.90, y = 10.0, z, w; int ip, fp; z = y - x; ip = (int) z; w = (z - ...
0
votes
1answer
77 views

SASS calculation rounding - configurating the number of decimals with Web Workbench and Visual Studio 2012

In SASS you can usually configure how many decimals you want in your calculations (see Sass and rounding down numbers. Can this be configured?). This is handy, as especially Chrome sometimes have ...
1
vote
1answer
111 views

Button Corners Rounded Background Image

I want to create Button with background.png and rounded corners. How to do this? I wrote this code on MainActivity: <Button android:layout_width="match_parent" ...
-1
votes
3answers
60 views

php how to shorten the file size from Byte unit to larger unit without number rounding

Let I take an example to explain it which I expect. Example: I have file size '3147483648 Bytes', and I want to convert it to following appropriate file size: 2 GB + 70 MB + 333 KB + 512 Bytes. Any ...
1
vote
5answers
137 views

Round values in java

How will I round 1 < value < 1.5 to 1.5 1.5 < value < 2 to 2
2
votes
2answers
319 views

How can I round up to the next multiple of 0.05 using SQL Server?

How can I round a floating-point number to the hundredth place, while also rounding up to the nearest multiple of 0.05 in SQL Server. Example 4.93 would round to 4.95
1
vote
2answers
49 views

How can I avoid int-floor bias while mouse-targeting at small speeds?

I have a simple algorithm for an object to follow the mouse pointer at a given max speed in Java. The crux of the algorithm is this: // Set up displacement trackers for later. // (These are used in ...
3
votes
2answers
100 views

Calculating the max rounding diff when dividing x with x2

This might be 1/2 Math, 1/2 Programming question. But here we go. I have a random decimal with 2 decimals. I am going to divide this with a random integer. Then I would like to know the possible ...
0
votes
1answer
71 views

PHP converting my floats to integers in my array

I have this code: $val = (float) $desc; if (!isset($runepage['statistics'][$key])) { $runepage['statistics'][$key] = (float) 0.0; } $runepage['statistics'][$key] += $val; where $val ...
3
votes
3answers
148 views

In Ruby how do you round down a number to 2 significant digits

For example, If I have 24987654, I need it to return 24000000, is this possible?
6
votes
3answers
181 views

Decimal.Round default setting for MidpointRounding [duplicate]

The following applies: var rounded = Decimal.Round(7.635m, 2); //rounded: 7.63 This, to me, is wrong and unexpected behavior. I would assume the value of rounded to be 7.64. To achieve this, I can ...
3
votes
4answers
85 views

floor() behaving strangely

I needed a function to round up a positive double to its closest integer. lurking aorund i found this very elegant way int x = floor(y + 0.5); I wrote a simple testing program: double a = 10.0; ...

1 2 3 4 5 15