Tagged Questions
5
votes
3answers
136 views
Formatting Output
I need to output numbers in scientific notation such that there is always a "0" before the decimal point.
e.g. For the number x = 134.87546, I need to produce the output
0.134875E03 NOT ...
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 ...
3
votes
2answers
118 views
how do I get to haskell to output numbers NOT in scientific notation?
I have a some items that I want to partition in to a number of buckets, such that each bucket is some fraction larger than the last.
items = 500
chunks = 5
increment = 0.20
{- find the proportions ...
1
vote
1answer
423 views
h:inputText changing to scientific notation
I have an h:inputText control where I can type in numbers up to 7 digits and it will convert them to a decimal representation (ie. type in "9999999" and it will render "9999999.0"). However, when I ...
-3
votes
3answers
1k views
Format double value in scientific notation
I have a double number like 223.45654543434 and I need to show it like "0.223x10E-3".
How can I do this in Java?