Rounding a numerical value means replacing it by another value that is approximately equal but has a shorter, simpler, or more explicit representation
-1
votes
4answers
38 views
Strange math with rounding and multiplying
I have an odd problem. I'm grabbing numbers from the web audio API, what I get out is a constant list of:
3.1051260268969075e-28 etc etc
I want to round that figure, but using:
...
1
vote
2answers
47 views
Objective-C: Flooring to 3 decimals correctly
I am trying to floor a float value to the third decimal. For example, the value 2.56976 shall be 2.569 not 2.570. I searched and found answers like these:
floor double by decimal place
Such answers ...
0
votes
1answer
28 views
vb.net math.round returns the wrong number with no decimals
I am using this code for dividing and rounding two numbers and then return only two decimals:
Dim mb As Long = Math.Round(((Endsize - startSize) / 1000000), 2)
however, this returns the rounded ...
1
vote
1answer
21 views
Rounding up to the multiple of float number in PHP
I want to round number to the specific number or to a multiple of them. For integer it is ok, but problem appears when I want round to the multile of float like this example:
Number (or multiple) of ...
1
vote
5answers
56 views
How right way to round a very small negative number?
There is a very very small negative number for example -0.123e-35 which we get from previous computing.
The number may be used in some other formulas. Is it right way to round this number suppose to ...
2
votes
7answers
90 views
how to do rounding in C?
I have a code sample:
float f = 3.55f;
printf("%.1f\n", f);
the result is 3.5, not 3.6, which is desired.
float delta = 1e-7;
float f = 3.55f;
printf("%.1f\n", f+delta);
now the result is 3.6, ...
1
vote
3answers
68 views
How to see if a number ends in .0
I am trying to run a test if the number ends in .0
I am running a program with numbers orders of magnitude apart so I can't estimate to a certain amount of digits. using % doesn't work either because ...
0
votes
1answer
19 views
How can I get SQL Server to force output with decimal places using ROUND()
I am using the following SQL to round to two decimal places:
ROUND(CAST([Col1] AS FLOAT) / SUM([Col1] + [Col2] + [Col3] + [Col4] + [Col5] + [Col6]), 2)
I need to get SQL to output two decimal ...
8
votes
3answers
132 views
Override Delphi function System.Round
I just discovered that a software I have to reimplement uses extensivelly System.Round(). The problem is that this function uses "Bankers rounding" and the behaviour can not be changed like in ...
0
votes
3answers
43 views
out of memory error when using diag function in matlab
I have an array of valued double M where size(M)=15000
I need to convert this array to a diagonal matrix with command diag(M)
but i get the famous error out of memory
I run matlab with option ...
0
votes
3answers
83 views
rounding double in java [duplicate]
I have a double valued diagonal matrix stored in a text file.
size(file)~410 Mo
I would like to reduce the size by rounding my double values.
If its a good idea, how to do it in java
...
2
votes
3answers
35 views
C# Rounding 2 decimals: Truncate vs Round
I would like to know which are the advantages and disadvantages using Truncate or Round when rounding a float to 2 decimals:
float number = 3.4567070
Math.Round(number, 2)
Math.Truncate(100 * number) ...
0
votes
0answers
13 views
XCode round rect buttons acting wonky
Does anyone else deal with buttons acting funny like this? (link below) I have no idea what causes it, or how to fix it. In the past I have re-saved all my PNG files, reimported them and it worked. ...
-3
votes
2answers
41 views
Rounding long decimal values in c programming
I am stuck up with this problem.
I get double values in some variables which are as follows:
a = 0.76271469999999997000
b = 0.66698279999999999000
c = 0.34262199999999998000
I need to round these ...
0
votes
1answer
23 views
Qt negative int not rounding properly
Using Qt, my negative int is not rounding properly. Here is my source code:
if (intCalibrate < 0)
{
intCalibrateCalculate = (intCalibrate * 100.0f * 5.0f/9.0f - 0.5f) + 65535;
}
else
{
...
0
votes
1answer
48 views
How to specify RoundingMode for decimal numbers in Jasper Reports
I'm using Java with Jasper Reports and would like to format a decimal value using this format mask "#,##0.00". At the first sight all looks fine but... I found that my decimal values are rounded using ...
-1
votes
2answers
47 views
math.h default rounding mode not clear
I am facing very strange fact about rounding of float and conversion to int.
As is stated here:
http://www.gnu.org/software/libc/manual/html_node/Rounding.html
Rounding to nearest representable ...
0
votes
3answers
48 views
Javascript calculation for a data loop with no decimals
I am trying to calculate prices for a loop of elements :
function calculateBill(id,price)
{
var t = document.getElementById('total').value;
var qty = ...
0
votes
2answers
22 views
Price Rounding to nearest 5c
i have an sql script that calculates the discount for items, now while i can do the calculation just fine i'm running into the problem for cents in the price
i have an item which is $9.95, the ...
4
votes
1answer
95 views
why is java math.round always rounding down? [duplicate]
I have a number of fields which take inputs, a process which happens and then fields that show the output. My issue is that for some reason math.round seems to be always rounding down instead of to ...
0
votes
0answers
8 views
Changing the height of a scrollbar?
So, I have box with round corners and have put a scrollbar on it. My problem is that with round corners the scrollbar is the normal size for a square, going out of the box. I was wondering if anyone ...
-2
votes
2answers
97 views
Draw image in canvas with decimal values
I am trying to draw an image originating from a list of X,Y values that represent the start and stop points of a line. They are in inches, so they are currently formatted in to decimals.
The problem ...
2
votes
1answer
33 views
Round up a Math::BigFloat number
From what I understand reading the documentation of Math::BigFloat, the following should be the code to round a number up, but it doesn't seem to work.
#!/usr/bin/perl
use strict;
use warnings;
use ...
0
votes
3answers
61 views
Cannot convert from long to int, why can't I round this double to the nearest int using Math.round
why can't I round this double to the nearest int using Math.round, I get this error "cannot convert from long to int"
Double bat_avg = Double.parseDouble(data[4])/Double.parseDouble(data[2]);
...
0
votes
0answers
19 views
How can I change “Windows Phone Coding4Fun RoundButton Content Template”?
I am trying to change my round button's content's foreground but I can't. Could you help me please?
<Controls:RoundButton x:Name="btnIDO" Content="iDo" HorizontalAlignment="Left" ...
1
vote
1answer
40 views
Round a double number when printing to cout
I want to print only one digit after the decimal dot.
So I write:
double number1 = -0.049453;
double number2 = -0.05000;
cout.setf(ios::fixed,ios::floatfield);
cout.precision(1);
cout << ...
0
votes
2answers
91 views
Remove integer and only display decimal point in Python?
I am trying to calculate the square root of a number to where it looks like this:
Enter number for square root: 2
---------------------------------
.41
However, with the current code I have:
def ...
2
votes
2answers
64 views
How to round up a decimal?
How can I use round() to round a number to the superior number as soon as there is a decimal?
For example:
1.00001 = 2
1.1 = 2
1.4785834975 = 2
1.00 = 1
1.99 = 2
3.01 ...
3
votes
2answers
44 views
Linq data type comparison with Double
In my Linq query I have a where statement that looks like this
&& vio.Bows.Any(nw => nw.XCoordinate.Equals(currVio.XCoordinate)))
values are
nw.XCoordinate = 4056.48751252685
...
0
votes
2answers
37 views
round php decimal value to second digit after last 0
I have results of an "on the fly" calculation that end in decimal values (after converted using money_format) as follows:
$cost_per_trans = 0.0000000476
$cost_per_trans = 0.0000007047
The ...
0
votes
3answers
53 views
C# Convert double to string cut some last numbers
I have latitude and longitude in double and I want to convert them to string format with dot. So I am using:
start_lon.ToString(CultureInfo.InvariantCulture)
and I get right format (I get dot) but ...
-6
votes
1answer
49 views
Is there a way to code this curve?
Is there a way to code this curve, keeping in mind the design is full width, NOT boxed.
0
votes
1answer
62 views
Round MVC ViewBag variable to 2 decimal places
I have 2 different fields saved in a database as money : Balance & Amount. However when I try to display these on an mvc view, the Balance is already rounded to 2DP whilst the amount is being ...
0
votes
1answer
16 views
MySQL Round() function won't round down
Im running MySQL version 5.5.3.
I have this code:
SELECT DISTINCT model, round(avg(overallRating),1)
FROM car_ratings, car_details
WHERE car_ratings.carId = car_details.carId
AND make = 'HOLDEN'
...
0
votes
0answers
30 views
Implement sound Interval Arithmetic
How to implement sound Interval Arithmetic in Java?
I need to implement a sound interval arithmetic with java.
Let's take the type double as example, we use an iterval [0.09999....005, ...
1
vote
2answers
32 views
glob2rx in R to get all cells whose last decimal is 5?
I have a matrix that looks lke this:
wun2 308.0 111.0 72.0 64.0
wupA 8177.0 3933.0 2235.0 2057.0
wus ...
0
votes
1answer
36 views
Loss of significance php round [duplicate]
I have the following code
$suma += round(1*43067.8000,2);
$suma += round(-1*18875.1800,2);
$suma += round(-1*15293.9700,2);
$suma += round(-1*8898.6500,2);
print $suma;
The output is ...
1
vote
5answers
121 views
Increasing the value by 1 if it has decimal place?
My scenario is that if
47/15= 3.13333
i want to convert it into 4, if the result has decimal i want to increase the result by 1, right now i am doing this like
float res = ((float)(62-15) ...
3
votes
1answer
73 views
What is the most efficient way to format strings with rounding and thousand separator in C?
So I have an inner loop situation with a buffer of floating point and integer values that are to be copied over to a another buffer in string format.
What are my alternatives to round and insert a ...
0
votes
1answer
22 views
check if decimal $var is_int, then run round()
Im trying to write a function that will check if a $var is a number (i was trying to trying to use is_int()) and if it is then run round().
The only problem is that for round() im using a number like ...
4
votes
5answers
108 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
...
-5
votes
2answers
26 views
Rounding this result [duplicate]
i need rounding this result and put rounded result to 'tb3'.
example:
2.1565 -> 2
2.9855 -> 3
<script type="text/javascript">
function sum(){
document.getElementById('tb3').value = ...
0
votes
0answers
78 views
Rounding floats in Python
I am receiving the following error:
line 46, in train
deltaWeight = 0.1 * ((self.testOutputs[i][0] - self.outputUnits[0]) ** 2) OverflowError: (34, 'Numerical result out
of range')
I've ...
1
vote
2answers
87 views
C# - (int)Math.Round((double)(3514 + 3515)/2) =3514?
Helo everyone.
int[] ai1=new int[2] { 3514,3515 };
void average1()
{
List<int> aveList = new List<int> { ai1[0],ai1[1]};
double AveragLI = aveList.Average();
...
0
votes
1answer
62 views
Saving float number in SQLite issue?
I tried saving some floats into SQLite tables (for the first time) but the stored values are different from what I wanted to save. They were nearly exactly the numbers I saved. This requires me to ...
-2
votes
4answers
93 views
Is there any easy way to round a float with one digit number in objective c?
Yes. You are right. Of Course this is a duplicate question. Before flag my question, please continue reading below.
I want to round a float value, which is
56.6748939 to 56.7
56.45678 to 56.5
...
2
votes
1answer
95 views
Oracle: Decimal and rounding
I have a value in the table 0.0821, and I want to convert it to 8.21.
My SQL query is to_char(round(prdll_yr2.rate_chg_pct_qty *100 ),'9.99')
But it returns 8.00 instead of 8.21.
0
votes
1answer
77 views
C# - Rounding the division of integers
Windows, C#, VS2010.
My app has this code:
int[,] myArray=new int[10,2];
int result=0;
int x=0;
x++;
Like below, if the result is between 10.0001 and 10.9999; result=10
result= ...
0
votes
1answer
44 views
Rounding a float to the nearest .5 [duplicate]
I need to round a float to the nearest .5, for example:
1.1 = 1
1.5 = 1.5
1.6 = 1.5
1.8 = 2
and so on.
I really don't know how to do it. Any help would be greatly appreciated.
2
votes
1answer
69 views
Round number by rounding units in R [duplicate]
I am trying to round number by rounding units.
For example,
value <- c(8.21,1.76, 6.42,1.94,10.38)
if rounding unit is 0.2, the results would be
(8.2, 1.8, 6.4, 2.0, 10.4).
How can I do it ...








