The tag has no wiki summary.

learn more… | top users | synonyms

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
28 views

Rounding up a number not always works as expected

I want to charge my users 1 credit for each hour or fraction they use a service. To calculate the cost I'm using the following code, but in some cases, for example when the starting and ending dates ...
2
votes
1answer
89 views

How to make DWT in steganography work

Effectively my question boils down to the following. In steganography, when one hides information in the DWT coefficients of an image, how can he obtain integer values for the pixels after taking the ...
7
votes
2answers
70 views

Android: java rounding error. Can't understand why?

Can anybody explain why on Earth these "same" expressions returns different values? (new BigDecimal(String.valueOf(131.7d))).multiply(new BigDecimal(String.valueOf(0.95d))).doubleValue() = 125.115 ...
0
votes
2answers
70 views

creating a rounding function

trying to do something real simple but it's giving me a pretty big head ache. I need to write a function that will round the value of a double argument to the number of decimal places specified by n. ...
2
votes
4answers
192 views

Rounding up to 2 decimal place

I have this code below, my desired answer is 37.58 and not 37.56 or 37.60 after inputting 37576 BigDecimal n = new BigDecimal(num); BigDecimal t = new BigDecimal(100); BigDecimal res = n.divide(t); ...
2
votes
1answer
78 views

Large numbers rounding AS3

I've a huge numbers, for example 1.98726575488820e+30, and i want to rounding it to this form: floor + "." (without quoting) + five-digit mantissa + "e+..." (if there is e) but I don't know how can I ...
0
votes
2answers
351 views

ios double from string without rounded

Below code is rounding my latitude string. i dont want it to get rounded. double lat must be 41.04546. NSString *latitude= @"41.04546"; double lat= latitude.doubleValue; //it gives 41.0455 ...
1
vote
1answer
999 views

Better rounding in Python's NumPy.around: Rounding NumPy Arrays

I am looking for a way to round a numpy array in a more intuitive fashion. I have some of several floats, and would like to limit them to only a few decimal places. This would be done as such: ...
0
votes
3answers
101 views

Unwanted rounding C++

I have the following equations: //get thermistor resistor value temp=(THERMISTOR_R0)/((temp2/temp)-1); //get temperature value in Kelvins and convert to Celsiuis ...
1
vote
1answer
45 views

PHP how to rounded total

I'm confused to using round function in PHP, I have make some calculation function in my system using PHP, but the answer still not in rounded. I want all the total will be in percent_complete that ...
1
vote
1answer
410 views

How to remove the decimal part from a float number that contains .000 in RDLC

I have a RDLC, contains a column weight, to show a float number. If there's any decimal part, I have to show it. If there's no decimal part, I shouldn't show x.000000 What do you suggest to do so? ...
2
votes
3answers
3k views

converting to double to two decimal places

Hi i am a c# novice would someone politely tell me how to convert the values of this piece of code to a double/rounded decimal.. thanks in advance DataTable dtValues = new DataTable("GetValues"); ...
0
votes
3answers
196 views

How to handle the decimal values of my dropdown list without rounding or trimming zeros

I have a drop down list with decimal values. (formatted as string) <select id="SizeBox"> <option id="size_5" value="14.00">14</option> <option id="size_6" ...
0
votes
2answers
2k views

Excel decimal Rounding?

How can I round a number in excel such as by formatting it so that the actual number changes and not just it's appearance in the cell. For example, if I have 229.729599999998 in a cell and I format ...
-1
votes
4answers
140 views

Java Double Mysteriously Rounding

I have this code: package picalculator; //import java.util.Scanner; public class PiCalculator { static int odd=1; public static void main(String[] args) { calculatePi(); } public static ...
2
votes
3answers
3k views

round a floating-point number to the next integer value in java

how can i round up a floating point number to the next integer value in Java? Suppose 2.1 -->3 3.001 -->4 4.5 -->5 7.9 -->8
2
votes
4answers
380 views

Rounding doubles for use in NSString

I have a situation where I have lots of different double values, for example 1.00, 0.25 and 2.50. I would like to round these doubles so that they become 1, 0.25 and 2.5; in other words I want to ...
3
votes
4answers
952 views

Why C# round and SQL round functions yields different outputs?

I am using ROUND function from C# and SQL, and surprisingly both are yielding different results. In SQL: ROUND(1250.00, -2) = 1300 In C# ROUND 1250 with round and precision = 2 = 1200 Has anyone ...
0
votes
1answer
1k views

Round in numpy to Nearest Step

I would like to know how I can round a number in numpy to an upper or lower threshold which is function of predefined step size. Hopefully stated in a clearer way, if I have the number 123 and a step ...
1
vote
3answers
165 views

round function in c #

public static decimal Round( decimal d, int decimals ) The decimals parameter specifies the number of fractional digits in the return value and ranges from 0 to 28. If decimals is zero, an ...
2
votes
2answers
13k views

iOS round a float

I have a floating point number that have more decimal digits, for example: float fRes = 10.0 / 3.0; actually the fRes value is 3.3333333333333 it's possible set for example 2 decimal digits: float ...
0
votes
2answers
1k views

C++ how to set a fixed decimal precision for a float

I have an API call which returns a double. The double's decimal length can variate from many decimal places to a few (it all comes down to the state of an actuator). This double represents the current ...
0
votes
2answers
3k views

How to round to integer (naturally) in C++? [duplicate]

Please i need help in rounding integers naturally in C++ as follows: example 1: Rounding(1.6) = 2 ( as in ceil(1.6) ) example 2: Rounding(1.4) = 1 ( as in floor(1.4) ) example 3: ...
0
votes
2answers
192 views

avoid round off

how to avoid rounding off numbers Code below Dim acc = 0 Dim i Dim x() = {699.68, 632.70} For i = LBound(x) To UBound(x) acc = acc + x(i) Next console.writeline(acc) return : 1333 ...
-1
votes
2answers
136 views

Cutting down output after bytes to gigabytes conversion

I'm converting bytes into gigabytes and when I do, the output is something like: 57.686961286 Is there any way I can cut down the total number displayed to something like: 57.6?
6
votes
5answers
19k views

How to check whether input value is integer or float?

How to check whether input value is integer or float? Suppose 312/100=3.12,Here i need check whether 3.12 is float or integer.
2
votes
2answers
2k views

C#: Pagination, Math.Ceiling

I'm creating some pagination and I'm getting an issue. If I have a number 12 and I want to divide that by 5 (5 is the number of results I want on a page), how would I round it up properly? This ...
0
votes
5answers
410 views

Getting rounded value from a double result

I want to display the net amount of a calculation in two text boxes if netamount = 45.60 first textbox should show rounded value and next textbox should show what is rounded. I have earlier done ...
1
vote
8answers
355 views

Rounding a number

var output = Convert.ToDecimal(amount / 4); labelOutput.Text = "You need: " + System.Math.Round(output,0); this code is part of a calculator for a game "amount" is how much the user wants to make, ...
3
votes
1answer
104 views

Sql Server - Precision handling

I am just reading on the MSDN about Precision Handling. Taken out from the table on this site: Operation: e1 / e2 Result precision: p1 - s1 + s2 + max(6, s1 + p2 + 1) Result scale: ...
6
votes
2answers
2k views

Ceiling to Nearest 50

I can round the elements of A to the nearest integers greater than or equal to A ceil(A) But what about if I want to round it to the nearest 50 greater than or equal to A? For example, given the ...
2
votes
3answers
4k views

Java Rounding Up

How can I rould the value of the numberGrade up so if it is 89.5 it goes to 90. numberGrade is taken in as a double but making it a int does not round it up or down. public class GradeReporter { ...
4
votes
6answers
1k views

Is there a C rounding function like MATLAB's round function?

I need a C rounding function which rounds numbers like MATLAB's round function. Is there one? If you don't know how MATLAB's round function works see this link: MATLAB round function I was thinking ...
20
votes
13answers
14k views

C++: Rounding up to the nearest multiple of a number

OK - I'm almost embarrassed posting this here (and I will delete if anyone votes to close) as it seems like a basic question. Is this the correct way to round up to a multiple of a number in C++? I ...
11
votes
3answers
6k views

Why does .NET decimal.ToString(string) round away from zero, apparently inconsistent with the language spec?

I see that, in C#, rounding a decimal, by default, uses MidpointRounding.ToEven. This is expected, and is what the C# spec dictates. However, given the following: A decimal dVal A format string ...
0
votes
5answers
445 views

JavaScript: Rounding question

If I have the following var lowerBound = 0; var higherBound = 100; var inputVar = document.getElementById('input').value; // e.g. 51 How do I programatically determine if the inputVar is closer to ...
5
votes
4answers
2k views

MATLAB - floor question

I'm a MATLAB beginner. Here's the problem: >> a = floor(7/2.5) a = 2.00 >> b = rem(7,2.5) b = 2.00 >> c = floor(b/2) c = 0 c should be 1, right? Why ...