Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

80
votes
9answers
24k views

In C#: Math.Round(2.5) result is 2 (instead of 3)! Are you kidding me?

In C#, the result of Math.Round(2.5) is 2. It is supposed to be 3, isn't it? Is this a C# bug or something? Thanks!
61
votes
16answers
132k views

How to round a number to n decimal places in Java

What I'd like is a method to convert a double to a string which rounds using the half-up method. I.e. if the decimal to be rounded is a 5, it always rounds up the previous number. This is the standard ...
49
votes
5answers
6k views

Why does .NET use banker's rounding as default?

According to the documentation, the decimal.Round method uses a round-to-even algorithm which is not common for most applications. So I always end up writing a custom function to do the more natural ...
43
votes
13answers
58k views

round() for float in C++

I need a simple floating point rounding function, thus: double round(double); round(0.1) = 0 round(-0.1) = 0 round(-0.9) = -1 I can find ceil() and floor() in the math.h - but not round(). Is it ...
42
votes
13answers
137k views

Truncate (not round) decimal places in SQL Server

I'm trying to determine the best way to truncate or drop extra decimal places in SQL without rounding. For example: declare @value decimal(18,2) set @value = 123.456 This will auto round @Value ...
28
votes
2answers
356 views

CSS icon iOS/OSX style

Is is possible to create this effect in CSS3? I am able to have the rounded corner, the border the background but not the curly effect. Is it possible to have the curly effect in css3? Thanks
28
votes
6answers
60k views

How do you round a number to two decimal places in C#?

I want to do this using the Math.Round function
21
votes
5answers
30k views

Rounding numbers in Objective-C

I'm trying to do some number rounding and conversion to a string to enhance the output in an Objective-C program. I have a float value that I'd like to round to the nearest .5 and then use it to set ...
20
votes
9answers
2k views

How to round floats to integers while preserving their sum?

Let's say I have an array of floating point numbers, in sorted (let's say ascending) order, whose sum is known to be an integer N. I want to "round" these numbers to integers while leaving their sum ...
16
votes
3answers
17k views

JavaScript: Rounding to two decimal places. Not less than two

I have this line of code which rounds my numbers to 2 decimal places. But the thing is I get numbers like this. 10.8, 2.4 etc. These are not my idea of 2 decimal places so how I can improve this: ...
15
votes
5answers
11k views

How do you round UP a number in Python?

This problem is killing me. How does one roundup a number UP in Python? I tried round(number) but it round the number down. Example: round(2.3) = 2.0 and not 3, what I would like The I tried ...
15
votes
12answers
6k views

rounding to an arbitrary number of significant digits

How can you round any number (not just integers > 0) to N significant digits? For example, if I want to round to 3 significant digits, I'm looking for a formula that could take: 1,239,451 and return ...
14
votes
4answers
5k views

Should I use NSDecimalNumber to deal with money?

As I started coding my first app I used NSNumber for money values without thinking twice. Then I thought that maybe c types were enough to deal with my values. Yet, I was advised in the iPhone SDK ...
13
votes
3answers
835 views

Why do round() and ceil() not return an integer?

Once in a while, I find myself rounding some numbers, and I always have to cast the result to an integer : int rounded = (int) floor(value); Why do all rounding functions (ceil(), floor()) return a ...
13
votes
2answers
30k views

In jQuery, what's the best way of formatting a number to 2 decimal places?

This is what I have right now: $("#number").val(parseFloat($("#number").val()).toFixed(2)); It looks messy to me. I don't think I'm chaining the functions correctly. Do I have to call it for ...
12
votes
4answers
260 views

Rounded division by power of 2

I'm implementing a quantization algorithm from a textbook. I'm at a point where things pretty much work, except I get off-by-one errors when rounding. This is what the textbook has to say about ...
12
votes
5answers
507 views

What is the best way to find the digit at n position in a decimal number?

Background I'm working on a symmetric rounding class and I find that I'm stuck with regards to how to best find the number at position x that I will be rounding. I'm sure there is an efficient ...
12
votes
5answers
2k views

Round to 5(or other number) in python

Is there a build-in function that can round like this: 10 -> 10 12 -> 10 13 -> 15 14 -> 15 16 -> 15 18 -> 20
12
votes
2answers
327 views

With IEEE-754, 0 < ABS(const) < 1, is (x / const) * const guaranteed to return distinct results for distinct values of X?

Assume I do this operation: (X / const) * const with double-precision arguments as defined by IEEE 754-2008, division first, then multiplication. const is in the range 0 < ABS(const) < 1. ...
12
votes
5answers
8k views

How might I convert a double to the nearest integer value?

how do you convert a double into a int (can remove the rounding)
12
votes
2answers
6k views

How to Round a Time in T-SQL

I'me looking for a function that would receive a time and would round it to the next/previous hour / half-hour / quarter / minute.
11
votes
6answers
21k views

VBA: How to round to nearest 5? (or 10 or X)

Given numbers like 499, 73433, 2348 what VBA can I use to round to the nearest 5 or 10? or an abitrary number? By 5: 499 -> 500 2348 -> 2350 7343 -> 7345 By 10: 499 -> 500 2348 ...
11
votes
3answers
4k views

Integer division rounding with negatives in C++

Suppose a and b are both of type int, and b is nonzero. Consider the result of performing a/b in the following cases: a and b are both nonnegative. a and b are both negative. Exactly one of them is ...
11
votes
11answers
16k views

How to resolve a Java Rounding Double issue

Seems like the subtraction is triggering some kind of issue and the resulting value is wrong. double tempCommission = targetPremium.doubleValue()*rate.doubleValue()/100d; 78.75 = 787.5 * 10.0/100d ...
10
votes
2answers
141 views

C++ gamedev: truncating float to int

I'm making a game in C++ where is a tank that can moves on a stage. The tank has an angle (float, in degrees, and i'm supposing the tank is at 0º when his cannon points to the right), a speed (float), ...
10
votes
5answers
389 views

.Net Rounding Issue

I have a rounding issue inside of .Net. I am rounding a 3 digit number down to two digits and it is causing some problems with one number. If I try to round 34.425 to two decimal places it should ...
10
votes
9answers
16k views

Round a double to x significant figures after decimal point

If I have a double (234.004223) etc. I would like to round this to x significant digits after the decimal places in C# So far I can only find ways to round to x decimal places but this simply removes ...
9
votes
3answers
3k views

Rounding double values in C#

I want a rounding method on double values in C#. It needs to be able to round a double value to any rounding precision value. My code on hand looks like: public static double RoundI(double number, ...
9
votes
3answers
3k views

Round to nearest five C#

I'm using C# and I need to round a double to nearest five. I can't find a way to do it with the Math.Round function. How can I do this? What I want: 70 = 70 73.5 = 75 72 = 70 75.9 = 75 69 = 70 and ...
9
votes
8answers
8k views

Rounding a double to 5 decimal places in Java ME

How do I round a double to 5 decimal places, without using DecimalFormat?
9
votes
6answers
3k views

Rounding negative numbers in Java

According to Wikipedia when rounding a negative number, you round the absolute number. So by that reasoning, -3.5 would be rounded to -4. But when I use java.lang.Math.round(-3.5) returns -3. Can ...
9
votes
4answers
12k views

How do I round a number in javascript?

While working on a project, I came across a js-script created by a former employee that basically creates a report in the form of Name : Value Name2 : Value2 etc... Problem for me though, is that ...
8
votes
8answers
327 views

Is it possible to remove floating point errors without resorting to arbitrary-precision datatypes?

I was wondering whether, under specific conditions, it is possible to remove floating point errors without resorting to arbitrary-precision datatypes. The problem is the usual one. The language is ...
8
votes
8answers
517 views

Why can't c# calculate exact values of mathematical functions

Why can't c# do any exact operations. Math.Pow(Math.Sqrt(2.0),2) == 2.0000000000000004 I know how doubles work, I know where the rounding error is from, I know that it's almost the correct value, ...
8
votes
7answers
2k views

how to check if the number is integer?

I was surprised to learn that R doesn't come with a handy function to check if the number is integer. is.integer(66) # FALSE The help files warns: is.integer(x) does not test if x contains ...
8
votes
2answers
113 views

PHP given a series of arbitrary numbers, how can I choose a logical max value on a line graph?

I am constructing a line graph in PHP. I was setting the max value of the line graph to the max value of my collection of items, but this ended up making the graph less readable you are unable to view ...
8
votes
3answers
879 views

Why does .Net use a rounding algorithm in String.Format that is inconsistent with the default Math.Round() algorithm?

I've noticed the following inconsistency in C#/.NET. I was wondering why it is so. Console.WriteLine("{0,-4:#.0} | {1,-4:#.0}", 1.04, Math.Round(1.04, 1)); Console.WriteLine("{0,-4:#.0} | ...
8
votes
4answers
872 views

How to best aproach rounding up decimals in c#

I've decimal value 18.8. Values that are stored in this variable can be of any kind. For example it can be 1.0000000 or 1.00004000 or 5.00000008. I would like to write a method so that i can pass ...
8
votes
6answers
8k views

How do I round a float up to the nearest int in C#?

In C#, how do I round a float to the nearest int? I see Math.Ceiling and Math.Round, but these returns a decimal. Do I use one of these then cast to an Int?
7
votes
3answers
155 views

R round to nearest .5 or .1

I have a data set of stock prices that have already been rounded to 2 decimal places (1234.56). I am now trying to round to a specific value which is different for each stock. Here are some ...
7
votes
2answers
346 views

Math.Round methodology, starting at the smallest decimal

There have been many threads started over the confusion in the way that Math.Round works. For the most part, those are answered by cluing people in to the MidpointRounding parameter and that most ...
7
votes
7answers
706 views

Why returns C# Convert.ToDouble(5/100) 0.0 and not 0.05

double variable = Convert.ToDouble(5/100); Will return 0.0 but i expected 0.05 What can / must i change to get 0.05 because the 5 in this example is a variable
7
votes
5answers
440 views

Why is my number being rounded incorrectly?

This feels like the kind of code that only fails in-situ, but I will attempt to adapt it into a code snippet that represents what I'm seeing. float f = myFloat * myConstInt; /* Where myFloat==13.45, ...
7
votes
5answers
3k views

round number in JavaScript to N decimal places

in JavaScript, the typical way to round a number to N decimal places is something like: function round_number(num, dec) { return Math.round(num * Math.pow(10, dec)) / Math.pow(10, dec); } ...
7
votes
5answers
2k views

.Net Round Bug

The Math.Round function for .Net 3.5 SP1 appears to round 0.5 to zero, while it rounds 1.5 to 2.0. I have tested this with decimal numbers, and the following code: decimal pos = 0.5m; decimal neg = ...
7
votes
5answers
10k views

Why does SQL Server round off results of dividing two integers?

I have a table with a smallint column that contains percentages as whole numbers (i.e., 50, 75, 85, etc.) When I divide this column by 100, as in SELECT MY_COLUMN/100 AS PCT_AS_FRACTION FROM ...
7
votes
8answers
465 views

Why does the order affect the rounding when adding multiple doubles in C#

Consider the following C# code: double result1 = 1.0 + 1.1 + 1.2; double result2 = 1.2 + 1.0 + 1.1; if (result1 == result2) { ... } result1 should always equal result2 right? The thing is, it ...
7
votes
1answer
3k views

Rounding a Java BigDecimal to the nearest interval

I have a BigDecimal calculation result which I need to round to the nearest specified interval (in this case it's the financial market tick size). e.g. Price [Tick Size] -> Rounded Price 100.1 ...
7
votes
4answers
3k views

.NET method to round a number up to the nearest multiple of another number?

I'm looking for a method that can round a number up to the nearest multiple of another. This is similar Quantization. Eg. If I want to round 81 up to the nearest multiple of 20, it should return ...
7
votes
1answer
181 views

How do I round a number up in PHP?

I need to round any non-integers up to the nearest integer, regardless of whether the number after the decimal place is >5 or not. Thanks!

1 2 3 4 5 9