Tagged Questions
The decimals tag has no wiki summary.
12
votes
7answers
44k views
Rounding Number to 2 Decimal Places in C
How can I round a float (such as 37.777779) to two decimal places (37.78) in C?
12
votes
5answers
7k views
Raising a decimal to a power of decimal?
The .net framework provides in the Math class a method for powering double. But by precision requirement I need to raise a decimal to a decimal power [ Pow(decimal a, decimal b) ]. Does the framework ...
4
votes
4answers
166 views
range() for floats
Is there a range() equivalent for floats in Python?
>>> range(0.5,5,1.5)
[0, 1, 2, 3, 4]
>>> range(0.5,5,0.5)
Traceback (most recent call last):
File "<pyshell#10>", line ...
4
votes
1answer
80 views
Cocoa Decimals and Protocol Buffers, compatibility with .NET
I've been working with Protocol Buffers with an iOS app written using CocoaTouch and have run into what probably amounts to a rookie mistake with decimal numbers.
Protocol Buffers does not have a ...
4
votes
7answers
1k views
How to round a decimal to the nearest fraction?
Not sure if that is the right way to ask this or not but here is the problem.
Given a latitude of 26.746346081599476, how do I find the number 26.75 as the 16th greater than the number and 26.6875 as ...
4
votes
6answers
495 views
Mysql calculation issues: 1+1=1.999999999
The problem is this, when I add two or more doubles from a table to a view, instead of giving me the right results, it adds a about ten or so more digits. For example 0.5+1.5=1.99999999998 or ...
3
votes
3answers
261 views
Avoiding problems with JavaScript's weird decimal calculations
I just read on MDN that one of the quirks of JS's handling of numbers due to everything being "double-precision 64-bit format IEEE 754 values" is that when you do something like .2 + .1 you get ...
3
votes
2answers
455 views
Rounding decimal numbers in perl, wrong result
I hate decimal numbers. For 1.005 I don't get the result I expect with the following code.
#!/usr/bin/perl -w
use strict;
use POSIX qw(floor);
my $num = (1.005 * 100) + 0.5;
print $num . "\n"; ...
3
votes
6answers
127 views
Special decimal formatting
Is there a string format that can be used on a decimal so that the following results are obtained?
123 => "123"
123.4 => "123.40"
123.45 => "123.45"
123.456 => "123.46"
In English, the ...
3
votes
1answer
355 views
Showing decimals of a variable with sprintf in MATLAB
I don't understand the next thing that happens using the sprintf command.
>> vpa(exp(1),53)
ans =
2.7182818284590455348848081484902650117874145507812500
>> e = ...
3
votes
2answers
132 views
What is wrong with this string format (different behavior on simulator and device)?
I have this block of code executed when pressing a number:
NSString *currentValue = [@"" stringByAppendingFormat:@"%.02f", [[[[[textField text] stringByReplacingOccurrencesOfString:@"." ...
3
votes
1answer
111 views
Estimating error on calculations using decimals
We're currently using System.Decimals to represent numbers in a .NET application we're developing. I know that decimals are design to minimize errors due to rounding, but I also know that certain ...
2
votes
1answer
71 views
Scala BigDecimal how to display more decimals?
First of all, I am aware that there is a similar topic regarding the division of 1 by 3. However, my code is quite different and I don't know how to apply the information given there to my situation. ...
2
votes
2answers
149 views
PHP - How Compare Decimal Values
I'm trying figure out how to compare decimal values in PHP properly.
$get_decimal_value = mysqli_query($conn, "SELECT DecimalValue FROM my_table WHERE Id = $some_id LIMIT 1")
or die($db_conn_err);
...
2
votes
1answer
405 views
convert numberformat (coldfusion)
HI folks! i got a simple question for coldfusion users, does anyone know how to convert a dynamic number into decimals, for example i have a code: #number# and it equals to, for example 10 but i need ...
2
votes
1answer
315 views
Batch COLOR script that accepts Color-names, Decimals and Hex Parameters
I just finished my a Batch COLOR script that accepts Color-names, Decimals and Hex Parameters.
This script works exactly like the MS-Color command but it also accepts
decimals and color-names.
Run ...
2
votes
2answers
194 views
How to get a variable to have 2 decimals
I have a variable i would like to force to have 2 and always 2 decimals. Im comparing to a currency. Often i get a comparison looking like the following.
if self.price != price
#do something
end
...
2
votes
4answers
132 views
Simple: How do doubles work in Perl?
I am very confused about how decimal numbers work in perl. I'm having trouble multiplying an int with a double. Here's what I have:
sub timeEstimate(){
$number = shift;
print "Number: $number\n";
...
2
votes
2answers
1k views
Rounding off decimals in Django
I want to round off my decimal values as below:
7,715.625 becomes 7,716
How do I achieve this?
2
votes
4answers
294 views
Is there a library class to represent floating point numbers?
I am writing an application which does a lot of manipulation with decimal numbers (e.g. 57.65). As multiplications and divisions quickly erode their accuracy, I would like to store the numbers in a ...
2
votes
10answers
3k views
C/C++ rounding up decimals with a certain precision, efficiently
I'm trying to optimize the following. The code bellow does this :
If a = 0.775 and I need precision 2 dp then a => 0.78
Basically, if the last digit is 5, it rounds upwards the next digit, ...
2
votes
3answers
14k views
C#, Operator '*' cannot be applied to operands of type 'double' and 'decimal'
This error should be a simple one but I cant seem to make it work. The problem lies in the fact that this very same code works earlier in the program. I don's see any reason for it to be sending an ...
1
vote
3answers
30 views
Always rounding decimals up to specified precision
I'm looking for an elegant way to rounding up decimal numbers always up. Seems like round(0.0045001, 5, PHP_ROUND_HALF_UP); is not returning what I expected so I came up with following function;
...
1
vote
3answers
61 views
How to show answers which are more than 1 decimal point long in C++
My C++ program has an division operation which goes like this after the using namespace and stuff.
cout<<"Please type the data";
cin>> a;
z = a/4;
cout<<"The answer is"<< ...
1
vote
1answer
141 views
How can I limit the number of digits displayed by printf after the decimal point?
I wrote a small program that reads two integers using scanf and then performs various arithmetic calculations. I'm using printf to display the results. How can I make printf display only two digits ...
1
vote
1answer
49 views
Browser position:absolute and decimal truncation?
I'm trying to position individual characters precisely in HTML5 using position: absolute.
I've tried specifying the position in % and em, but every browser handles the decimals differently, and ...
1
vote
4answers
1k views
jQuery round decimal to .49 or .99
I'm trying to work out how to round a decimal to .49 or .99.
I have found the toFixed(2) function, but not sure how to round up or down.
Basically need to get to the closest price point, so for ...
1
vote
1answer
631 views
python decimals - rounding to nearest whole dollar (no cents) - with ROUND_HALF_UP
I'm trying to use Decimal.quantize() to achieve the following: -
For any amount of money, expressed as a python decimal of default precision, I want to round it using decimal.ROUND_HALF_UP so that it ...
1
vote
5answers
1k views
Why does adding two decimals in Javascript produce a wrong result? [closed]
Possible Duplicate:
Is JavaScript’s Math broken?
Why does JS screw up this simple math?
document.write(.1 + .2) // 0.3000000000000004
document.write(.3 + .6) // 0.8999999999999999
...
1
vote
2answers
2k views
Remove Decimal Places with Access SQL Query
I'm working with MS Access to do some math. I'm taking a Cost and Dividing it by a decimal value to get a Price. I'm using a link table and a access sql query.
SQL Ex
Select (cost/markup) As Price ...
0
votes
2answers
138 views
Visual c# decimal places and currency
I'm a novice with C# and I've read a few other questions about decimals but still goes over my head , so I ask how do i 1) Change Average Inventory to english pounds as i have read questions but they ...
0
votes
2answers
96 views
Objective-C - Get number of decimals of a double variable
Is there a nice way to get the number of decimals of a double variable in Objective-C?
I am struggling for a while to find a way but with no success.
For example 231.44232000 should return 5.
Thanks ...
0
votes
1answer
72 views
Format float with the same number of significant decimals
What i would like to do is to format number with the same amount of significant decimals.
Example:
var a1 = 0.123456789;
var b1 = 0.00123456789;
var c1 = 123.456789;
var a2 = string.Format("????", ...
0
votes
3answers
58 views
Are numbers like 120 and 120.0 equal [closed]
I had a math question. Are numbers such as 120 and 120.0 equal? I was confused when looking for an answer and have heard various things. Would love to hear an answer!!!
0
votes
3answers
198 views
PHP - floatval cuts of position after decimal point?
I have this PHP code:
<?php
$float = "1,99";
echo "<p>$float<br>";
$float = floatval($float); // Without this line number_format throws a notice "A non well formed numeric ...
0
votes
0answers
60 views
adding decimals for number to word php
I have a code that can convert numbers into words using php to be use in cheque. Here's the code which it was written in class:
Class Conversion
{
public function convert_number($number)
{
...
0
votes
4answers
74 views
NonEnglish Charecters are being converted to Decimal
While I was checking a RSS feed , in browser I can see the fonts as below:
装,配上超短迷你裙,太过暴露,也很不得体。大专学生的随性打扮,到底是邋遢,还是新时尚呢?这一期的”青春开讲“,omy记者来到武吉班让政府中学的学生,一起讨论这个话题。一名学生说,穿着打扮得体,是对别人、对自己的尊重。另一名学 ...
But ...
0
votes
0answers
18 views
Calculatin with decimals
I have a database that calculates a discount from a base price. Some discounts need to be fractional ie 28.5% discount. I'm using DECIMAL for the type with at LENGTH of 10,2. The database accepts ...
0
votes
1answer
380 views
NSNumberFormatter works with decimal separator but not with comma separator
I have been working on this for two days now. Time to consult stackoverflow.
I have an iOS user setting that allows selection of the decimal and grouping separators. It works perfectly when the ...
0
votes
3answers
68 views
Make calculation include decimals
I am new to javascript and I got most of this code from another Q&A on this site worked great! Only problem is that the code doesn't count the decimals! How do I get this code to count the ...
0
votes
1answer
84 views
Ruby on rails 3 - Show decimals
Probably one of the simpler questions but I haven't found a solution for it. I want to show 2 decimals after making an equation of numbers coming from a database.
This is the code I have.
...
0
votes
3answers
178 views
Getting a number of digits
I've been searching for a way in python to get only 4 digits on the right of the comma of a decimal number, but i couldn't find. Took a look on this post,---> Rounding Decimals with New Python Format ...
0
votes
4answers
157 views
Rounding off in java
I have a list that contains many decimal values.
If i get a value of .032 i have to
round it off to 3.2%
If i get a value
of 32.33 i have to round it off to
32%
If i get a value of 32.66 i have ...
0
votes
1answer
164 views
Function to RoundUP as Microsoft Excel does, in Javascript
Hello everybody again. Days ago, I started a project in which i needed to do some measure calculation; specifically: statistic calculation. Well, thats not the problem, the problem came with rounding ...
0
votes
3answers
3k views
MATLAB: ??? Undefined function or method 'sprint' for input arguments of type 'char'
I´m trying to show 16 decimal place of a result. The code I put is this
clear x;
x = 0.245;
1-x+1/2*x.^2-1/6*x.^3+1/24*x.^4
sprint('%0.16f', ans)
Matlab give me this answer
ans =
0.7827
??? ...
0
votes
4answers
2k views
C# decimal separator?
I have amethod which returns numbers like this:
public decimal GetNumber()
{
return 250.00m;
}
Now when this value is printed to the console for example, it has a comma (250,00) instead of a ...
0
votes
2answers
497 views
using properties in Django Admin
I have a model with field defined as
p = models.DecimalField(max_digits=12, decimal_places=6)
But the decimal_places=6 is only for internal accuracy. I only want 2 decimal_places to show up in the ...
0
votes
2answers
1k views
displaying integers in android using sqlite
I have a database that contains decimals. The column is set up as ".. decimal(5,2) not null. What I'm trying to do is to find the sum of the column and displaying it in a text field by using this ...
0
votes
5answers
179 views
How do I format a number stored in a string?
If I have numbers as a text string without decimal places, how can I convert it to 2 decimal places such that 12345 is converted to 123.45? The string can be any length greater than 1.