Top "Scientific-notation" questions

Scientific notation is a way of writing numbers.

String in scientific notation C++ to double conversion

I've got a database filled up with doubles like the following one: 1.60000000000000000000000000000000000e+01 Does anybody know how to convert a …

c++ math type-conversion scientific-notation
Matlab, how to adjust axis values on figures (scientific notaiton - not enough precision)

Possible Duplicate: Suppress exponential formatting in figure ticks Matlab is outputting my axis markers as 5.777 x10^6 for every tick mark …

matlab plot number-formatting scientific-notation
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 …

perl decimal notation scientific-notation
Suppress Scientific Format in a Dataframe Column

I have a column called accountnumber with values similar to 4.11889000e+11 in a pandas dataframe. I want to suppress the …

python pandas dataframe scientific-notation
E notation in C

I'm reading C Programming - A modern approach, and I have stumbled across the section about E-notation. I have difficulties …

c scientific-notation
Javascript parseFloat '1.23e-7' gives 1.23e-7 when need 0.000000123

parseFloat(1.51e-6); // returns 0.00000151 parseFloat(1.23e-7); // returns 1.23e-7 // required 0.000000123 I am sorting table columns containing a wide range of floating-point numbers, …

javascript scientific-notation parsefloat
How can I convert numbers into scientific notation?

I want to make a function that takes an entered value and converts it to scientific notation (N x 10^a) …

javascript html math scientific-notation
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. …

java formatting decimal scientific-notation
How to stop doubles converting to scientific notation when using a stringstream

I'm making a function to return the number of decimal and whole number digits and am converting the inserted typename …

c++ stringstream scientific-notation