0
votes
2answers
169 views
String in scientific notation C++ to double conversion
Hi, I've got a database filled up with doubles like the following one:
1.60000000000000000000000000000000000e+01
Does anybody know how to convert a number like that to a double in C++?
Is there a …
1
vote
5answers
194 views
Only 2 digits in exponent in scientific ofstream
So according to cplusplus.com when you set the format flag of an output stream to scientific notation via
of.setf(ios::scientific)
you should see 3 digits plus and a sign in the exponent. …
5
votes
2answers
715 views
Java DecimalFormat Scientific Notation Question
Hello.
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, …
0
votes
2answers
166 views
How can I print a huge number in Lua without using scientific notation?
I'm dealing with timestamps in Lua showing the number of microseconds since the Epoch (e.g. "1247687475123456").
I would really like to be able to print that number in all its terrible glory, but Lua …
2
votes
1answer
265 views
Why in SAS does a numeric literal in scientific notation give a different number to the number written out explicitly?
The following SAS code:
data _null_;
format t u best32.;
t = 10000000000000000000000000;
u = 1e25;
put t u;
if t ne u then put 'diff';
run;
on my Windows machine prints out:
…
1
vote
8answers
247 views
Why use ‘e0’ at the end of a defined constant in c?
Hi Everyone,
I'm trying to debug a problem with a perl application that calls some c programs to do text editing.
BATCH_JV_CSH_MAX is used to test the maximum value of an amount field. It currently …
0
votes
2answers
404 views
Parsing scientific notation sensibly?
I want to be able to write a function which receives a number in scientific notation as a string and splits out of it the coefficient and the exponent as separate items. I could just use a regular …
3
votes
2answers
1k views
In Access 2007 CSV Export: Disable Scientific Notation.
When exporting a CSV from Access 2007, it automatically converts decimals into scientific notation.
Unfortunately the tool that receives them treats these fields as text, and displays them as is.
…
5
votes
2answers
3k views
Convert from scientific notation string to float in C#
What's the proper way to convert from a scientific notation string such as "1.234567E-06" to a floating point variable using C#?
