scientific-notation Questions

1

Solved

I haven't found a way to only get exponents which are multiples of 3, when displaying numbers in the scientific format. Neither did I succeed writing a simple custom formatting function. Here is a ...
Languor asked 24/6, 2020 at 17:58

8

Solved

I need help converting a string that contains a number in scientific notation to a double. Example strings: "1.8281e-009" "2.3562e-007" "0.911348" I was thinking about just breaking the number in...
Bedsore asked 2/1, 2011 at 3:11

0

I would like my webapi to serialize json using camelcase. So i added the following to Global.asax. HttpConfiguration config = GlobalConfiguration.Configuration; config.Formatters.JsonFormatter.S...
Elegy asked 9/1, 2020 at 13:44

2

I want to get full number as a String, but instead "1490650000000" it returns scientific notation "1.49065e+12" Here's how I try to convert it: {$substr: ["$myNumber", 0, -1]}; Any ideas how to...

3

I just ran a statisitical model and i want it to display the results of the model as a table using stargazer. However, the large numbers are displayed in full. fit2<-lm(A~B,data=C) stargazer(f...
Ot asked 5/3, 2015 at 8:55

3

Solved

I want to compare the results of different models (lm, glm, plm, pglm) in a table in R using stargazer or a similar tool. However I can't find a way to display the coefficients in scientific notati...
Volatilize asked 22/7, 2015 at 0:20

4

Solved

When following code is executed: DecimalFormat eNotation1 = new DecimalFormat("#0.###E0"); System.out.println(eNotation1.format(123.456789)); My expected output is; 1.235E2 instead, 1...
Garrotte asked 29/4, 2019 at 13:0

2

Solved

I'm trying to get plotly to put values in scientific notation regardless of their size, i.e. 100 should be 1E02 in the ticks, but it keeps showing numbers below 10.000 as normal annotation. Setti...
Idaho asked 3/4, 2018 at 9:31

5

Solved

Is it possible to format string in scientific notation in the following ways: set fixed places in exponent: 1 set fixed decimal places in mantissa: 0 double number = 123456.789 So the number ...
Superincumbent asked 20/8, 2011 at 16:7

3

Solved

I want to make a function that takes an entered value and converts it to scientific notation (N x 10^a) I've tried many different things, but I can't seem to get it right. Example: I enter 200. ...
Gawlas asked 20/6, 2012 at 16:56

3

I am writing a pandas df to a csv. When I write it to a csv file, some of the elements in one of the columns are being incorrectly converted to scientific notation/numbers. For example, col_1 has s...
Shane asked 10/4, 2014 at 18:9

2

Solved

System.out.println(2e+5); Above line's output is, 200000.0 While below line's, System.out.println(2e-5); output is, 2.0e-5 Why does 2e-5 is not solved down with -10^5 giving the outp...
Herd asked 20/7, 2018 at 16:58

2

Haskell's read is a bit too strict about floating point numbers: $ ghci GHCi, version 8.2.2: http://www.haskell.org/ghc/ :? for help Prelude> read "-1E34" :: Double -1.0e34 Prelude> read "-1...
Azal asked 28/4, 2018 at 16:13

1

In a JSON object, given the string "0.0000086900" as the value of a key-value pair, if I do |tonumber on this, 8.69e-06 gets returned. How can I ensure that only decimals are ever returned? In the...
Fibrosis asked 26/3, 2018 at 23:20

5

Solved

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, and th...
Sensuous asked 31/7, 2009 at 17:10

4

Solved

Can I force R to use regular numbers instead of using the e+10-like notation? I have: 1.810032e+09 # and 4 within the same vector and want to see: 1810032000 # and 4 I am creating output fo...
Sandhog asked 22/2, 2012 at 15:24

2

Solved

Is there a way to prevent as.character from using exponential notation? For example, I have num <- c(9999999, 10000000) char <- as.character(num) char [1] "9999999" "1e+07" But inste...
Fe asked 12/2, 2018 at 23:1

2

Solved

I am trying to read a file that has the following contents: 1.0000000e+01 2.9265380e+03 5.0821200e+02 4.3231640e+01 2.0000000e+01 1.0170240e+04 9.2798610e+02 4.0723180e+01 3.0000000e+01 2.1486260e...
Curriculum asked 21/6, 2014 at 15:17

4

Solved

I have a nested Python list that looks like the following: my_list = [[3.74, 5162, 13683628846.64, 12783387559.86, 1.81], [9.55, 116, 189688622.37, 260332262.0, 1.97], [2.2, 768, 6004865.13, 575...
Zedoary asked 19/3, 2012 at 20:54

1

Solved

I've made some code that rounds off a number to a given number of decimal places but will use more places when there is underflow to avoid rounding just to zero, which wouldn't be informative enoug...
Basketball asked 15/9, 2017 at 3:15

2

I'd like to input numbers with up to eight decimal points with an <input> element. However, if I have an <input type="number" step="0.00000001"> and use the up/down arrows on the input ...
Pebrook asked 14/10, 2015 at 18:29

2

Solved

How do I assign a number that is in scientific notation to a variable in C#? I'm looking to use Plancks Constant which is 6.626 X 10-34 This is the code I have which isn't correct: Decimal Plan...
Silicone asked 22/1, 2017 at 0:32

2

Solved

I've wondered about this for a while now. When Matlab prints the matrix A, for instance, with A it sometimes appears in scientific notation such as A = 1.0e+03 * 0 0 0.0070 0.0080 0.0030 0....
Vitovitoria asked 10/11, 2010 at 18:39

1

Solved

I've read here (How to prevent numbers being changed to exponential form in Python matplotlib figure) and here (Matplotlib: disable powers of ten in log plot) and tried their solutions to no avail....
Highwayman asked 31/10, 2016 at 3:0

4

Solved

I have a double number like 223.45654543434 and I need to show it like 0.223x10e+2. How can I do this in Java?
Dedifferentiation asked 31/5, 2010 at 16:37

© 2022 - 2024 — McMap. All rights reserved.