0
votes
3answers
31 views
How to round a DateTime in MySQL?
I want to discretize the DateTime with the resolution of 5 minutes. I did it in C#, but how to convert the following code to MySQL?
DateTime Floor(DateTime dateTime, TimeSpan resolution)
{
return …
2
votes
3answers
19 views
Round to n Significant Figures in SQL
I would like to be able to round a number to n significant figures in SQL. So:
123.456 rounded to 2sf would give 120
0.00123 rounded to 2sf would give 0.0012
I am aware of the ROUND() function, …
1
vote
2answers
128 views
Rounding to use for int -> float -> int round trip conversion
I'm writing a set of numeric type conversion functions for a database engine, and I'm concerned about the behavior of converting large integral floating-point values to integer types with greater …
1
vote
2answers
84 views
Odd rounding problem using the ruby printf-format-specifier
Has anybody got any ideas on this one?
When we run:
printf("%.0f", 40.5)
On a windows box the return is "41" but on our production ubuntu server we're getting "40"
0
votes
3answers
41 views
accurate single pass penny computation
We have a cost C which must be assigned to departments 1..n. Another computation produces the share for each department, it is a number from 0 to 1, with more than 5 decimal places. The sum of all …
0
votes
1answer
28 views
creating a custom attribute to control rounding behavior
I have a class with a lot of Decimal properties that are used for financial calculations. There are rules that specify how many decimal places to use when rounding each number. There is no global …
2
votes
10answers
188 views
Precision nightmare in Java and MSSQL
Hi everyone,
I've been struggling with precision nightmare in Java and MSSQL up to the point when I don't know anymore. Personally, I understand the issue and the underlying reason for it, but …
2
votes
2answers
163 views
Faster implementation of Math.round?
Are there any drawbacks to this code, which appears to be a faster (and correct) version of java.lang.Math.round?
public static long round(double d) {
if (d > 0) {
return (long) (d + …
0
votes
4answers
112 views
How to properly display a price up to two decimals (cents) including trailing zeros in Java?
There is a good question on rounding decimals in Java here. But I was wondering how can I include the trailing zeros to display prices in my program like: $1.50, $1.00
The simple solution of
…
-1
votes
2answers
68 views
Adding text to this line
I'm a novice so please excuse the simplicity of this. I am trying to get a total ammount, trim the excess decimal places than append some text.. it all works until I try ROUND it
…
0
votes
3answers
511 views
php float calculation 2 decimal point
Hi everyone,
Got another math calculation problem again.
$a = 34.56
$b = 34.55
$a do some calculation to get this figure
$b is doing rounding nearest 0.05 to get this figure
what happen is
$c = …
1
vote
3answers
42 views
How to round with no trailing zeros in SQL Server 2005?
How to round with no trailing zeros in SQL Server 2005?
select round(100.5555, 2)
...yields 100.55**00**. How to get rid of the zeros?
16
votes
10answers
4k 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!
3
votes
7answers
352 views
sin, cos, tan and rounding error
I'm doing some trigonometry calculations in C/C++ and am running into problems with rounding errors. For example, on my Linux system:
#include <stdio.h>
#include <math.h>
int main(int …
7
votes
2answers
113 views
MS Access Rounding Precision With Group By
Why doesn't the average of the score of an employee of each month, when summed, equal the average of the employees score (ever)?
Average
SELECT Avg(r.score) AS rawScore
FROM (ET INNER JOIN Employee …
