Tagged Questions

0
votes
3answers
26 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
15 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 …
0
votes
1answer
27 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 …
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 …
1
vote
2answers
83 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"
-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 …
2
votes
2answers
161 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 + …
2
votes
10answers
187 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 …
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
vote
3answers
40 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?
0
votes
2answers
129 views

Rounding Error in C#: Different results on different PCs

I have a function in C# that returns the following: ... float amount = smallestPercentage * (float)quantity; return (int)amount; Now I know I am suppose to use Convert.Int32(amount) rather than …
0
votes
3answers
507 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 = …
0
votes
2answers
53 views

SQL rounding and truncation, needs a thorough explanation

Hello. I'm a novice when it comes to SQL and PHP, and I'm trying to round an average price result and take off the extra zeroes that currently appear. Currently my result turns up as: $3.005000 My …
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 …

1 2 3 4 5 7 next
15 30 50 per page