Questions tagged [scientific-notation]

Scientific notation is a way of writing numbers. In scientific notation, all numbers are written in the form of a*10^b. In computing "E notation" is often used. It uses "E" or "e" letter instead of "*10^".

Scientific notation is a way of writing numbers that are too big or too small to be conveniently written in decimal form. Scientific notation has a number of useful properties and is commonly used in calculators and by scientists, mathematicians and engineers.

In scientific notation all numbers are written in the form of a*10^b, where a(mantissa) is a real number and b(exponent) is an integer.

There are different subtypes of this notation. E notation is often used in computing. It uses E or e letter instead of *10^. Note: in this usage the character e is not related to the mathematical constant e or the exponential function e^x

Some examples:

Standard deciaml | Normalized scientific | E (upper) | e (lower)
-----------------+-----------------------+-----------+----------
              30 |                3x10^1 |       3E1 |       3e1         
         1,538.1 |           1.5381x10^3 |  1.5381E3 |  1.5381e3         
     0.000 005 2 |           5.2x10^(-6) |    5.2E-6 |    5.2e-6         
            -0.2 |            -2x10^(-1) |     -2E-1 |     -2e-1         
683 questions
-2
votes
1 answer

general to number in R

I have data in excel and after reading in R it reads as follows as lob2 lob3 1.86E+12 7.58E+12 I want it as lob2 lob3 1857529190776.75 7587529190776.75 This difference causes me to have different results after…
VASISTA
  • 33
  • 1
  • 6
-2
votes
1 answer

how to change scientific notation to numeric in a specific column in linux or perl

I have a file as follows: 1 13.00000 12.9999999183917 8.160832898340686E-008 21148294 2 16.00000 15.9999995223584 -4.760327190211910E-007 21148294 3 9.000000 8.99999979262170 2.073783047507050E-007 21148295 I want an…
user3383949
  • 3
  • 1
  • 2
-3
votes
1 answer

How to convert scientific notation double to non scientific notations double

I have a double that shows scientific notations like this: 2.95E-05 I get those values from a JSON string as double directly. I wonder how the double can be converted so it instead shows all zeros like a normal number? (0.0000295) Below attempt does…
Andreas
  • 1,121
  • 4
  • 17
  • 34
-3
votes
1 answer

Python: How to get number without scientific notation

By doing this: j = pow(p1, k1) I get this: j: 2.128e-100 How can I display it without the scientific notation? Something like this: j: 2.128
-3
votes
1 answer

Print double without scientific format & rounded to nearest integer

I need to print rounded off integers without using exponential denotations/parts. I'm currently using this to print rounded decimal. std::cout << std::llround(n) << n; However, it still prints like this for big…
TJain
  • 466
  • 1
  • 4
  • 18
-3
votes
1 answer

What is Meaning of 3.3882e+004 -1.9521e+001i in Matlab?

What does this number "3.3882e+004 -1.9521e+001i" means in Matlab?
-5
votes
1 answer

I am unable to get the output as desired in java

I am trying to read and print the value of double type using scanner class, but I am getting the output My output 2.3534534534523453E11 Expected output 235345345345.234534
-5
votes
4 answers

How to keep two digits in float number (PHP)

How to make number like 3.0000000054978E+38 to 3.00 in PHP? Many thanks!
Acubi
  • 2,793
  • 11
  • 41
  • 54
1 2 3
45
46