How do I turn 5.000000E-01 into a 'human readable' value?

1

Title says it all ? What's that 00000000E thing all about ?

George Profenza

Posted 2010-03-05T16:47:58.510

Reputation: 728

Question was closed 2012-07-13T01:18:11.890

Answers

9

5.000000E-01 = 5.000000 · 10−1 = 0.5

E stands for exponent of 10.

s1d

Posted 2010-03-05T16:47:58.510

Reputation: 296

2

Split the string on the E and have the right hand side as the exponent to the left hand side, if you're programming something. It's called "Standard Form", which is weird seeing as it's not actually standard (0.5 would be standard!), it's just a method everybody's agreed on to display really big, or really small, numbers.

Phoshi

Posted 2010-03-05T16:47:58.510

Reputation: 22 001