Tagged Questions
5
votes
2answers
3k views
Java DecimalFormat Scientific Notation Question
I'm using Java's DecimalFormat class to print out numbers in Scientific Notation. However, there is one problem that I have. I need the strings to be of fixed length regardless of the value, and the ...
2
votes
2answers
230 views
Python - How to convert decimal to scientific notation
How can I display this:
Decimal('40800000000.00000000000000') as '4.08E+10'?
I've tried this:
>>> '%E' % Decimal('40800000000.00000000000000')
'4.080000E+10'
But it has those extra 0's.
2
votes
2answers
3k views
How can I convert between scientific and decimal notation in Perl?
I know this is a total newbie question, but the answer may not be obvious to many new programmers. It wasn't initially obvious to me so I scoured the Internet looking for Perl modules to do this ...
1
vote
3answers
39 views
Convert scientific notation to decimal in C++
I want to be able to output in decimal and not scientific for all cases in my code.
If I have 122041e+08 then I want it to display as 122041000
If I have 4.6342571e+06 then I want it to display as ...
1
vote
3answers
758 views
Problems with decimals and scientific notation in Python 2.6.6
I'm having difficulty with decimal values that I need to use for arithmetic in some cases and as strings in others. Specifically I have a list of rates, ex:
rates=[0.1,0.000001,0.0000001]
And I am ...
0
votes
1answer
127 views
Scientific notation to decimal
I have a double and i am trying to convert it to a decimal. When i use decimalformat to achieve this i get the following:
public void roundNumber(){
double d = 2.081641999208976E-4;
...
0
votes
1answer
410 views
Django - How to allow users to enter decimals in scientific notation?
I want users to be able to enter a standard decimal value like 1.51 or enter a value in scientific notation like 4.08E+13.
I set up a decimal field in my model but when I try to enter the above ...