Rounding a numerical value means replacing it by another value that is approximately equal but has a shorter, simpler, or more explicit representation.
2
votes
1answer
47 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
32 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
42 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
26 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
54 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
59 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
53 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
105 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
27 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...)?
0
votes
1answer
34 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
77 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
95 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
37 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
90 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
55 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
92 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
70 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
52 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
105 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
94 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
52 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
88 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
19 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
186 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
58 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
78 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
53 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
96 views
3
votes
2answers
299 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
46 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
92 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
65 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
119 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
133 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
84 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
vote
3answers
38 views
Python 3.0+ setting to max 4 decimal and rounding
So I have an assignment to match an expected output: 34.7381. But I am getting 34.73809999999999. I realize that it is just a rounded number with only 4 decimal places but I have no clue how to that ...
0
votes
1answer
143 views
Rounding mode with BigDecimal in Java
The following code which uses RoundingMode.HALF_EVEN,
BigDecimal value1 = new BigDecimal("4.5");
value1=value1.setScale(0, RoundingMode.HALF_EVEN);
BigDecimal value2 = new BigDecimal("6.5");
...
0
votes
2answers
227 views
Double vs Decimal Rounding in C#
Why does:
double dividend = 1.0;
double divisor = 3.0;
Console.WriteLine(dividend / divisor * divisor);
output 1.0,
but:
decimal dividend = 1;
decimal divisor = 3;
Console.WriteLine(dividend / ...
3
votes
3answers
167 views
Round a double to the closest and greater float
I want to round big double number (>1e6) to the closest but bigger float using c/c++.
I tried this but I'm not sure it is always correct and there is maybe a fastest way to do that :
int main() {
...
2
votes
2answers
111 views
Android sqllite rounding error
We have problem in our Android application with rounding numbers. In calculation made in Java we use BigDecimal and this helps, but we have problem with SQLite, for ex.
SELECT ROUND(150.075 * 100) / ...
1
vote
1answer
131 views
How to stop Matlab rounding up doubles?
e = realmin;
x = 1 - e;
fprintf('x is %g',x);
Produces x is 1. However, I am trying to set x to 1 minus a small epsilon, which is equal to realmin.
How do I stop the rounding up?
-4
votes
1answer
67 views
java rounding numbers [duplicate]
I retrieve some data from a database but the number has a lot of digits and I want to round it. The thing is I do not want the whole number to be rounded.
Example :
I draw number ...
2
votes
1answer
88 views
Python int float rounding
While playing with python, I came across this:
a = 1/(2.2 - 2)
print a #prints out 5.0
print int(a) #prints out 4
I suspect the problem has something to do with binary number representation ...
0
votes
1answer
56 views
MS Access Rounding issue [duplicate]
I have 3 values saleprice, productprice and reward_price.
I need to have it look for saleprice first and if there is no saleprice then look at productprice. Then grab it and round it up or down by 50 ...
0
votes
1answer
431 views
round function in sql server 2008
i have a query which rounds the value for the particular column name:
select round([CIMtrek_CI_Act],0) as CI FROM [CIMtrek_SystemTable_DatawareHouse]
where [CIMtrek_CI_Act_33] is not null and ...
1
vote
5answers
236 views
Rounding integers to nearest multiple of 10
I am trying to figure out how to round prices - both ways. For example:
Round down
43 becomes 40
143 becomes 140
1433 becomes 1430
Round up
43 becomes 50
143 becomes 150
1433 becomes 1440
I have ...
0
votes
2answers
69 views
why are there rounding errors if I assign a datatype long to a datatype float? [closed]
the question from my teacher is:
Write down assignments who are possible but where rounding errors could occur.
This is in Java.
float f;
long l;
double d;
f = l;
d = l;
That is the answer but ...



