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^".
3
votes
5answers
40 views
Lua - gmatch scientific notation string to number
I am trying to convert a string of scientific notation numbers into actual numbers.
My test string is formatted like so:
myString = 1.000000000000000E+00, 2.000000000000000E+02, ...
9
votes
2answers
65 views
Leading zero in Matlab's scientific notation
In Matlab, when printing using e such as fprintf('%10.5e\n', pi/100) one will get the result to be 3.14159e-02. However, what if I want the number to have a leading zero such as 0.314159e-1? How can I ...
1
vote
2answers
44 views
Print float or double in non scientific notaion
Float or double always gives answer in scientific notation if number of digits are 7 or more. Like an decimal number 10000000.5 it is giving 1e-08 something. I am wondering if we can print 10000000.5 ...
1
vote
3answers
76 views
Angularjs avoid scientific notation for number filter
I need to print very small numbers for my app. I prefer if they were all displayed in decimal format. Is there a way to do this with the angularjs number filter or do I have to write my own or ...
-4
votes
1answer
38 views
Get value from a text and convert it to integer in Python
Imagine I have a text similar to this one:
tplh= 7.0336E-10 targ= 1.0915E-08 trig= 1.0212E-08
tphl= 6.1239E-10 targ= 2.0710E-08 trig= 2.0097E-08
tp= 6.5788E-10
tplhc= ...
3
votes
2answers
76 views
Scientific Notation Conversion - Scheme
I am trying to do simple subtraction arithmetic on two very large numbers.
(- 1.8305286640724363e+023 (floor 1.8305286640724363e+023))
When I do this, I get a result of 0.0. I'm expecting an output ...
0
votes
0answers
57 views
Storing numerical values in Excel in normal format (omiting scientific notation) using VBScript
I'm using a qa tool named TestComplete to compare two excel files using VBScript.First I'm converting the CSV file into Excel and use a excel comparison method to compare.
But when I run this script ...
0
votes
1answer
56 views
PHP Scientific Notation Shortening
I'm looking for an elegant solution here (if one exists).
I've got a bunch of numbers, with an arbitrary amount of decimal places. I want to force the number to use 8 decimal places if it's got more ...
0
votes
1answer
66 views
Scientific Notation returned using getItemValueDouble
I have a SSJS function with the below lines of code that keeps returning the value of the field 'day' in scientific notation. I have tried using BigDecimal in addition to the below with no ...
0
votes
3answers
99 views
How do I convert scientific to decimal notation?
I have a question concerning converting $calc value from scientific notation to decimal.
Any idea please?
my $calc = log2($prob/$probWords);
push @result, join(' ',@words) ." (".$calc.")\n";
...
5
votes
5answers
90 views
Is scientific notation interpreted as int or float?
If I hardcode a number in my code using the scientific notation (e.g. 1e9) what will the type of that number be (int, long, float, double..)?
When the significand or the exponent are floating point ...
2
votes
1answer
104 views
Avoiding scientific notation with Matlab
I have altready tried:
format long g;
But a number like this shows with scientific notation:
ans = 8.80173259769825e-05
How can I avoid scientific notation without using something like fprintf ? ...
2
votes
2answers
72 views
How to find chemical formulas with regex
This problem might not be a specific programming issue but, I try to find chemical formulas like H20, C02 etc. in a scientic text and I use this:
(?<=[\l\u]|\.)\d+
This works - but now also ...
5
votes
1answer
97 views
Storing small (1.0E-12) numbers as doubles in scientific notation
Here's the setup:
For my Bachelor's thesis, I want to test jet algorithms used at the LHC. Basically the first step is the folowing: Given some 4-momentum
p[0] = ...
0
votes
1answer
26 views
handling numbers in scientific notation with negative powers for use with bc [closed]
I have a program that outputs numbers in a standard scientific notation. The following numbers are representative examples of the output numbers:
1.2e10
1.86929e-05
I want to use these numbers in ...
1
vote
1answer
62 views
Javasctipt scientific notation override
I am trying to write a code that will figure out the largest product of 5 consecutive numbers in a given number.
The code I have attempts to convert the number into an array and then for-loop through ...
0
votes
3answers
92 views
Math results in scientific float and cannot calculate with it anymore
I am trying to make an xslt that can convert a position (vector3) via a quaternion to a new position. I have made the following set-up, but I am retrieving NaN's for very small values close to 0. How ...
1
vote
0answers
69 views
PHPGraphLib scientific notation Issue
I am using this graphing library to generate a few basic graphs. The issue I am having is that is cases where the values for the Y axis are over a million, The graph renders the numbers in scientific ...
9
votes
2answers
388 views
Stopping a large number of zeros being printed (not scientific notation)
What I'm trying to achieve is to have all printed numbers display at maximum 7 digits. Here are examples of what I want printed:
0.000000 (versus the actual number which is ...
1
vote
2answers
129 views
VBScript: Expanding precision to 16 decimals to circumvent scientific notation?
I've searched for this answer but cannot find anything for VBS.
For instance:
dim num
num = 1234567890123456 'a 16 digit number
msgbox num
Working with num in any way will result in the number ...
0
votes
0answers
21 views
Managing cross-platform output of exponents
I've Googled this issue a bit and haven't found a satisfactory solution, so I was hoping you might be able to help me out.
I am involved in a cooperative effort to set up open-source libraries for ...
0
votes
1answer
388 views
Convert Scientific notation to text or integer using regex in Notepad++
I am looking to convert a scientific notation number into the full integer number.
E.g:
8.18234E+11 => 818234011668
Excel reformatted all my upc codes within a csv and this solution is not ...
0
votes
1answer
83 views
JSON e and JSON E
On the JSON website here, it explains the different possibilities of JSON 'objects'. However, in the numbers section, these appear:
e | e+ | e- | E | E+ | E-
1 - What do these represent?
...
0
votes
1answer
142 views
Reading numbers in scientific notation using bash
As part of an annotation pipeline for De Novo fish genomes I need to compare e-values from BLAST to see whether they are lower than a certain threshold.
To get the semantics right I first evaluated ...
5
votes
4answers
324 views
java (beginner) converting scientific notation to decimal
if
double d = 1.999e-4
I want my output to be 0.0001999.
How can I do it?
2
votes
2answers
245 views
How do I force Python to keep an integer out of scientific notation
I am trying to write a method in Python 3.2 that encrypts a phrase and then decrypts it. The problem is that the numbers are so big that when Python does math with them it immediately converts it into ...
2
votes
4answers
79 views
Unify 10^x power in a sequence of number
I have a sequence of numbers like this:
1.687155E21
3.981457E19
0.5532155E21
3.018843E21
2.0532155E21
4.5532155E21
3.1637913E19
My problem is how to convert the two numbers which ends with 10^19 ...
0
votes
2answers
368 views
Reading values from file into array causes segmentation fault, C
I have multiple data files with two columns of numbers in scientific format as shown below:
-6.000000E-2 0.000000E+0
1.060000E+0 0.000000E+0
2.510000E+0 0.000000E+0
2.700000E+0 ...
3
votes
1answer
1k views
Convert to from scientific notation to decimal with ggplot
I am trying to plot some test data (show at the end of this post), using ggplot using the following command:
options(scipen=20)
ggplot(testData,aes(x=Group.1, y=x), format(scientific=FALSE)) +
...
0
votes
2answers
116 views
Scientific notation XAML
I'm using scientific notation in XAML. I do:
<TextBox Text="{Binding Path=CELULARIDAD_CFU, StringFormat='e6'}"/>
The problem is that for 1710000 is showing: 1.710000e+006, which is correct ...
2
votes
1answer
933 views
How can I convert numbers into scientific notation?
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. The ...
-3
votes
1answer
266 views
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?
0
votes
1answer
87 views
How to go through data files with integers and scientific noation using regex?
The data files which I have look like:
Title
10000XX 1.09876543e+02
There are many lines in this form with the column 1 values ranging from 1000000-2000099 and with column 2 values ranging from ...
1
vote
2answers
2k views
How to get Exponent of Scientific Notation in Matlab
When the numbers are really small, Matlab automatically shows them formatted in Scientific Notation.
Example:
A = rand(3) / 10000000000000000;
A =
1.0e-016 *
0.6340 0.1077 0.6477
...
-5
votes
4answers
494 views
How to keep two digits in float number (PHP)
How to make number like 3.0000000054978E+38 to 3.00 in PHP?
Many thanks!
2
votes
2answers
166 views
reading and storing numbers in perl without a loss of percision (Perl)
I have a few numbers in a file in a variety of formats: 8.3, 0.001, 9e-18. I'm looking for an easy way to read them in and store them without any loss of precision. This would be easy in AWK, but ...
2
votes
2answers
198 views
How do I make Perl’s system() format arguments using scientific notation?
From my Perl program, I am trying to run another command written in C using system. The command requires several arguments: a string, a float, two integers, a pair of floats, and another string. I am ...
0
votes
1answer
141 views
is_numeric incorrectly identifies a float (which is a random string)
I'm looking for numerics in a variable, and if not found I quote the string - otherwise it is left unquoted. Example:
$x = '000916846E38516';
if (is_numeric($x)) { echo 'Numeric!'; } else { echo ...
-1
votes
1answer
326 views
Displaying a scientific notation double in a more readable format
I am reading in a value from a PLC via a third party library, however when saved as a double the value appears to be in scientific notation.
The value in the PLC is 1.234 however, when debugging the ...
3
votes
1answer
1k views
SAS - how to preserve actual numbers when importing from a csv file with numbers in scientific notation
When I imported a file with long numeric IDs from a csv file into SAS, I wanted to convert the numbers into text. But these numbers were stored in scientific notation, so when they convert, the last ...
1
vote
3answers
434 views
Convert scientific notation to decimal in C++
I want to be able to output in decimal and not scientific for all cases in my code.
If I have 122041e+08 then I want it to display as 122041000
If I have 4.6342571e+06 then I want it to display as ...
1
vote
1answer
270 views
Mathematica import large integers from .csv?
I'm importing some data from a CSV into Mathematica. The first few lines of the CSV look like this:
"a_use","tstart","tend"
"bind items on truck to prevent from flying ...
4
votes
2answers
662 views
Disable scientific notation in MySQL command-line client?
I have a MySQL table with many numeric columns (some INT, some FLOAT). I would like to query it with the MySQL command-line client (specifically, mysql Ver 14.14 Distrib 5.1.41, for debian-linux-gnu ...
0
votes
1answer
245 views
Fastest algorithm to calculate the Normalized and Engineering Scientific notation of a number
Test case :
35000
-> a normalized scientific notation of the number would be 3.5 * 10E4
-> the engineering notation would be 35 * 10E3
A simple algorithm that does this would keep dividing the ...
2
votes
2answers
1k views
How to read float with scientific notation from file C++?
I have a file with this format:
-0.0064785667 0.73900002 0.028505694 4.7858757e-39 315 218
-0.0051828534 0.73900002 0.028505694 4.6936954e-39 316 218
-0.0038818798 0.73799998 0.028467119 ...
0
votes
1answer
355 views
How to compare scientific notation and decimal numbers in mysql MIN() aggregate function?
How can i apply mysql MIN() over mixed decimal value and scientific notation values. I need to get minimum distance using latitude longitude equation in a mysql query with MIN(). It is working if the ...
0
votes
3answers
626 views
scientific notation's type
int s = 1e9;
What is type of 1e9 and how precise is it? (Is it exactly equal to 1000000000?)
Printing type of a value/variable to stdout would be useful if it's possible.
1
vote
2answers
2k views
Python - fixed exponent in scientific notation?
Consider the following Python snippet:
for ix in [0.02, 0.2, 2, 20, 200, 2000]:
iss=str(ix) + "e9"
isf=float(iss)
print(iss + "\t=> " + ("%04.03e" % isf ) + " (" + str(isf) + ")")
It ...
2
votes
3answers
175 views
Scientifc Notation Java
I am working on a problem which was given to me by my friend. I need to take the input number in the form x.yzw*10^p where p is non zero and x.yzw can be zeros. I have made the program but the problem ...
4
votes
1answer
393 views
compact Number formatting behavior in Java (automatically switch between decimal and scientific notation)
I am looking for a way to format a floating point number dynamically in either standard decimal format or scientific notation, depending on the value of the number.
For moderate magnitudes, the ...