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 ...
3
votes
1answer
110 views
compact Number formatting behavior in Java (automatically switch between decimal and scientific notation)
I am looking for a way to format a floating point number dynamically in either standard decimal format or scientific notation, depending on the value of the number.
For moderate magnitudes, the ...
3
votes
2answers
1k views
Convert scientific notation to decimal notation
There is a similar question on SO which suggests using NumberFormat which is what I have done.
I am using the parse() method of NumberFormat.
public static void main(String[] args) throws ...
2
votes
3answers
89 views
Scientifc Notation Java
I am working on a problem which was given to me by my friend. I need to take the input number in the form x.yzw*10^p where p is non zero and x.yzw can be zeros. I have made the program but the problem ...
2
votes
2answers
349 views
Greek/latin scientific JLabel in Java Swing application
For a scientific application I want to design an input form which lets the user enter certain parameters. Some of them are designated using greek letters, some of them have latin letters. The ...
1
vote
1answer
107 views
Parse varying sized arrays in data structure - Java
As a novice Java programmer, I've run into a rather high hurdle while trying to analyze data for a personal project of mine. I have a text
file with ~33.5k data points in the following format:
...
1
vote
3answers
274 views
scientific notation abstraction in java
Is there a java class abstraction to denote scientific numbers (e.g. the number, 10 power modulus), so that I can do simple operations like multiplication or division on top of them.
Note: Looking ...
0
votes
1answer
114 views
Java Convert from Scientific Notation to Float
I have a program that I am working on which would effectively convert binary, decimal, or hex numbers to other formats (don't ask why I'm doing this, I honestly don't know). So far I only have a ...
0
votes
1answer
117 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
272 views
How do I display non-scientific formatted values on a JLabel and JTextField?
I have a string value that could contain a double, integer, ascii or byte value and I put that value into a JLabel. I would like for the double and long values to be in the form of 4000000000000 ...
0
votes
2answers
308 views
Convert very small double values to string (with scientific notation) (Java)
I'm trying to print a small double number like 6.67e-11, but using Double.toString() returns 0. What can I do to make it print 6.67e-11 (or something similar) instead?
-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?