Tagged Questions
The decimal-point tag has no wiki summary.
16
votes
4answers
7k views
What is the decimal separator symbol in JavaScript?
A thought struck me as I was writing a piece of JavaScript code that processed some floating point values. What is the decimal point symbol in JavaScript? Is it always .? Or is it culture-specific? ...
16
votes
3answers
17k views
JavaScript: Rounding to two decimal places. Not less than two
I have this line of code which rounds my numbers to 2 decimal places. But the thing is I get numbers like this. 10.8, 2.4 etc. These are not my idea of 2 decimal places so how I can improve this:
...
13
votes
2answers
30k views
In jQuery, what's the best way of formatting a number to 2 decimal places?
This is what I have right now:
$("#number").val(parseFloat($("#number").val()).toFixed(2));
It looks messy to me. I don't think I'm chaining the functions correctly. Do I have to call it for ...
11
votes
2answers
547 views
How can I make a “working” repeating decimal representation of a rational number?
I've figured out how to display the repeating part of a repeating decimal using OverBar.
repeatingDecimal doesn't actually work as a repeating decimal. I'd like to make a variation of it that looks ...
8
votes
5answers
7k views
How to display an output of float data with 2 decimal places in Java?
Can I do it with System.out.print?
Thank you.
7
votes
5answers
3k views
round number in JavaScript to N decimal places
in JavaScript, the typical way to round a number to N decimal places is something like:
function round_number(num, dec) {
return Math.round(num * Math.pow(10, dec)) / Math.pow(10, dec);
}
...
6
votes
3answers
6k views
How to change the decimal separator of DecimalFormat from comma to dot/point?
Ok, so here it is.
I have this little crazy method that converts BigDecimal values into nice and readable Strings.
private String formatBigDecimal(BigDecimal bd){
DecimalFormat df = new ...
6
votes
2answers
305 views
how can i show an irrational number to 100 decimal places in python?
i am trying to find the square root of 2 to 100 decimal places, but it only shows to like 10 by default, how can i change this?
5
votes
4answers
135 views
convert decimal mark
I have a csv file with data reading that I want to read into Python. I get lists that contain strings like "2,5". Now doing float("2,5") does not work, because it has the wrong decimal mark.
How do ...
4
votes
5answers
190 views
How to fix an application that has a problem with decimal separator
This post is about C# and .Net, but some info is valuable for other techonolgies.
Since I can remember, I've been having problems with apps or games that crash because of a different style of parsing ...
4
votes
6answers
3k views
In Java, why does the decimal separator follow the Locale's language, not its country, and, more importantly, how does one override it?
I'm working on an international project and have observed that, in Java, the choice of the decimal separator is based on the Locale's language, not its country. For example:
DecimalFormat ...
3
votes
3answers
93 views
Decimal point or decimal comma in Android
Is there an easy way to read back if the language set uses a decimal comma or a decimal point?
3
votes
7answers
214 views
Split double into two int, one int before decimal point and one after
I need to split an double value, into two int value, one before the decimal point and one after. The int after the decimal point should have two digits.
Example:
10.50 = 10 and 50
10.45 = 10 ...
3
votes
3answers
333 views
What's the best technique for handling US Dollar calculations in Perl?
What's the best technique for handling US Dollar calculations in Perl?
Especially: the following needs to work:
$balance = 10;
$payment = $balance / 3; # Each payment should be 3.33. How best to ...
3
votes
5answers
1k views
How do you calculate floating point in a radix other than 10?
Given Wikipedia's article on Radix Point, how would one calculate the binary equivalent of 10.1 or the hex equivalent of 17.17? For the former, what is the binary equivalent of a tenth? For the ...
3
votes
3answers
2k views
In Perl, how can I limit the number of places after the decimal point but have no trailing zeroes?
This question is similar to "dropping trailing ‘.0’ from floats", but for Perl and with a maximum number of digits after the decimal.
I'm looking for a way to convert numbers to string format, ...
2
votes
3answers
96 views
Precision of decimal number in Java, C, C++ and others
Let's say we have this kind of loop (pseudocode)
double d = 0.0
for i in 1..10 {
d = d + 0.1
print(d)
}
In C with printf("%f", d) I get this:
0.100000
0.200000
0.300000
...
1.000000
In ...
2
votes
4answers
583 views
Integer.valueOf() vs. Integer.parseInt()
Aside from Integer.parseInt() handling the minus sign (as documented), are there any other differences between Integer.valueOf() and Integer.parseInt()?
And since neither can parse , as a decimal ...
2
votes
2answers
104 views
Add a decimal to a string
I have a script that takes a big number and counts up. The script converts the number to a string so that it can be formatted with commas, but I also need to add a decimal place before the last two ...
2
votes
1answer
361 views
Can you make a TextField<BigDecimal> accept both , and . as decimal separator?
In a Wicket app, I have a decimal number text field:
TextField<BigDecimal> f =
new TextField<BigDecimal>("f", new PropertyModel<BigDecimal>(model, "share"));
I want it to ...
2
votes
2answers
1k views
How to get the numbers after the decimal point? (java)
double d = 4.321562;
Is there an easy way to extract the 0.321562 on it's own from d? I tried looking in the math class but no luck. If this can be done without converting to string or casting to ...
2
votes
3answers
406 views
Ruby Regex to round trailing zeros
I'm looking for a regex to remove trailing zeros from decimal numbers. It should return the following results:
0.0002300 -> 0.00023
10.002300 -> 10.0023
100.0 -> 100
1000 -> 1000
...
2
votes
1answer
403 views
Why did the digit grouping and decimal separator change for en-ZA from .NET 3.5 to .NET 4.0?
We have code in our system to format numbers and currency according to the regional settings selected by the user. One of our users has selected en-ZA and noticed that the digit grouping and decimal ...
2
votes
3answers
628 views
limit double at six decimal place in asp.net
i have a double, the decimal place isn't fix (8-?)
i want to fix the decimal place to six (for example: 1,234567).
this is my double:
CStr(score)
i guess it's quiet simple :P
2
votes
2answers
2k views
Leave only two decimal places after the dot
public void LoadAveragePingTime()
{
try
{
PingReply pingReply = pingClass.Send("logon.chronic-domination.com");
double AveragePing = ...
2
votes
3answers
739 views
General programming - Decimal numbers, floats
I'm probably completely wrong, and I don't really know anything about it, but I have a question about decimal number data types in programming languages. I understand that floats aren't completely ...
2
votes
3answers
573 views
double string conversion and locale
A common international issue is the conversion of double values represented in strings.
These stuff is found in a lot of areas.
Starting with csv files which are either called
comma separated
or
...
1
vote
2answers
36 views
rounding decimal points
I am trying to work with converting a decimal degree (23.1248) into a minutes style degree(23 7'29.3").
this is what I have so far:
double a=23.1248;
int deg=(int)a;//gives me the degree
...
1
vote
1answer
75 views
jQuery: Auto-formatting a number in text-field to two decimal places on keystroke
How do I get an input field (text) to accept only numbers and to automatically format it to two decimal places, as the user is typing in each digit?
For example, the default value of the field is ...
1
vote
3answers
68 views
How to change decimal separator cleanly in outputs in mysql - php combo
I was trying to export database query to CSV and the need arised to use different decimal comma. It seems impossible to change the decimal comma in MySQL, so I tried in PHP:
setlocale(LC_NUMERIC, ...
1
vote
1answer
116 views
DataGridView: DefaultCellStyle working with decimals
I am using a Datagidview control on winforms. This is getting filled dynamically. I am trying to display 4 decimal format number in the grid. I applied the DefaultCellStyle property as;
...
1
vote
1answer
125 views
NSNumberFormatter Won't Accept Zeros After a Decimal Point
Similar questions have been asked but I find that the offered solutions don't work with the latest iOS SDK or are not exactly applicable in this particular case.
I call a method using an ...
1
vote
2answers
109 views
LINQ query, ignoring results with certain decimal points
I need to perform a LINQ query on a large database in C#. One of the columns I need to use in the query is a double. I need to omit results that have more than 4 decimal places in this column. The ...
1
vote
1answer
318 views
mfc program using wrong decimal separator/language
I have the comma as the decimal separator in my Windows regional settings (Portuguese language), and all the programs I develop use the comma when formatting strings or using atof.
However, this ...
1
vote
2answers
376 views
C# unlimited significant decimal digits (arbitrary precision) without java [closed]
Possible Duplicate:
what is the equivalent for java class : BigDecimal in c#
I know in this post: Arbitrary precision decimals in C#? says to use java.math.BigDecimal, but I don't have J# ...
1
vote
0answers
524 views
Using AJAX Control Toolkits NumericUpDown Control with Comma as Decimal Separator
We are trying to use the NumericUpDown Control from the AJAX Control Toolkit, but can find no way to make it use a comma as a decimal separator instead of a point. Other controls such as the Calendar ...
0
votes
3answers
51 views
How to include decimal point to string in vb.net?
How to add decimal point (with two decimal places) to string, without converting string to decimal?
For example (Dim str1 as String), regardless str1 has value: 100 , 100.0 , 100.00, or 100.5 , ...
0
votes
1answer
128 views
Change decimal separator in MySQL
Is it possible to change the decimal comma from "." (dot) to other character (comma) in MySQL output? I don't want to use functions like FORMAT, I just want to use all the queries I normaly use ...
0
votes
3answers
82 views
Convert decimal number to vector
In matlab I want to convert this:
12345.6788993442355456789
into a vector
[1 2 3 4 5 6 7 8 8 9 9 3 4 4 2 3 5 5 4 5 6 7 8 9]
I have found several solutions to convert a integer into a vector ...
0
votes
2answers
88 views
Limiting text field entry to only one decimal point
I have created a text field to enter an amount of money. I want the user to be able to enter only one decimal point. I implemented that in the -(BOOL)textField:(UITextField *)textField ...
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
4answers
91 views
Format a number containing a decimal point with leading zeroes
I want to format a number with a decimal point in it with leading zeros.
This
>>> '3.3'.zfill(5)
003.3
considers all the digits and even the decimal point. Is there a function in python ...
0
votes
2answers
105 views
Android Calculator Truncating unnecessary decimal place after the result
I am getting results always in decimal format like if I enter '1', it gets converted into '1.0' and final result also comes in decimal format. Can anyone tell me how to display user inputs always in ...
0
votes
1answer
261 views
Adding commas, decimal to number output javascript
I'm using the following code to count up from a starting number. What I need is to insert commas in the appropriate places (thousands) and put a decimal point in front of the last two digits.
...
0
votes
1answer
625 views
Implimenting decimal through (id)sender tag with Xcode
Hello all I have a simple iOS/objective C question. I have searched the forum and have tried a couple different approaches but I cant seem to figure this out, I am very new to coding so I apologize ...
0
votes
0answers
118 views
How to format float decimals when using Value With Pattern binding?
I have an NSTextField, which is bound to a float value through Interface Builder via "Value with Pattern" field. The default display pattern is %{value1}@
Is there any way I can modify that line to ...
0
votes
3answers
153 views
Multiply by decimal by number of decimal places
I need a way to multiple the a float by the number of decimal places.
e.g.
Number = 10.04
Number of Decimal Places = 2
Result = 1004
Number = 123.421
Number of Decimal Places = 3
Result = 123421
...
0
votes
1answer
430 views
How to prevent System.Windows.Forms.NumericUpDown from allowing to type non-digits when DecimalPlaces = 0?
I wish to make this WinForm control (NumericUpDown) enforce whole numbers conditionally depending on the type (whole vs floating) of the thing that I am working with.
If I set the DecimalPlaces = 0, ...
0
votes
1answer
538 views
How do I set the correct decimal separator in IIS 6.0?
I hope you can help me here... I have a conflict with the decimal separator on my host's dedicated server. The DB (SQL SERVER 2005) uses dot as decimal separator. As a fact, if you query it directly ...
0
votes
3answers
750 views
Magento - decimal points in invoice/be
I need for my shop up to 4 decimal points. So far I followed some tuts and theyre working fine in front & backend for products. Only in sales/invoice prices,tax and totals are still rounded to 2 ...