Top "Decimal-point" questions

The character or glyph used to separate the integer part from the fraction part in a decimal number.

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 …

java math numbers double decimal-point
How to display a number with always 2 decimal points using BigDecimal?

I am using BigDecimal to get some price values. Requirement is something like this, what ever the value we fetch …

java precision bigdecimal decimal-point
convert decimal mark

I have a CSV file with data reading that I want to read into Python. I get lists that contain …

python locale decimal-point
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 …

mysql locale decimal-point
Truncating Double with VBA in excel

I need to truncate the amount of decimal places of my double value for display in a textbox. How would …

excel double decimal-point vba
rounding decimal points

Possible Duplicate: Round a double to 2 significant figures after decimal point I am trying to work with converting a decimal …

java decimal-point
pandas to_csv arguments float_format and decimal not working for index column

Background I am doing some simulations resp. a system analysis by variing parameters (in this case rpm only) and append …

python csv pandas indexing decimal-point
How to control number of decimal digits in write.table() output?

When working with data (e.g., in data.frame) the user can control displaying digits by using options(digits=3) and …

r excel number-formatting decimal-point output-formatting
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 …

javascript parsing syntax decimal-point
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 …

c# double int decimal-point