Tagged Questions
13
votes
2answers
11k 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#?
2
votes
2answers
148 views
Is there a way to truncate scientific notation numbers in Javascript?
As you all know since it is one of the most asked topic on SO, I am having problems with rounding errors (it isn't actually errors, I am well aware).
Instead of explaining my point, I'll give an ...
2
votes
1answer
806 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:
...