Tagged Questions
The scientific-notation tag has no wiki summary.
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#?
5
votes
3answers
136 views
Formatting Output
I need to output numbers in scientific notation such that there is always a "0" before the decimal point.
e.g. For the number x = 134.87546, I need to produce the output
0.134875E03 NOT ...
5
votes
2answers
3k views
Java DecimalFormat Scientific Notation Question
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 the ...
4
votes
1answer
177 views
Format C# Double to Scientfic Notation in powers with multiples of three
I'm trying to format some large numbers in scientific format, but I need the power in multiples of three. Is there a recommended way to do this?
I have a range of numbers in a table and instead of ...
4
votes
1answer
190 views
matlab scientific notation issue
I have an issue where an 8-digit string such as '313397E9' is being passed into excel, then read as the number '313397000000000', or '3.133970e+014'.
This is then being read by Matlab and recognized ...
4
votes
4answers
227 views
How to display a floating point value as scientific parameter in Delphi
We have a frequent need to display floating point values in a scientific form with multiplier and units, for example the value of 1500 V (volts) would be displayed as 1.5 kV.
A very small voltage of ...
4
votes
3answers
880 views
Python scientific notation using D instead of E
Some results file produced by Fortran programs report double precision numbers (in scientific notation) using the letter D instead of E, for instance:
1.2345D+02
# instead of
1.2345E+02
I need to ...
4
votes
2answers
3k views
In Access 2007 CSV Export: Disable Scientific Notation
When exporting a CSV from Access 2007, it automatically converts decimals into scientific notation.
Unfortunately the tool that receives them treats these fields as text, and displays them as is.
...
3
votes
1answer
110 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 ...
3
votes
2answers
118 views
how do I get to haskell to output numbers NOT in scientific notation?
I have a some items that I want to partition in to a number of buckets, such that each bucket is some fraction larger than the last.
items = 500
chunks = 5
increment = 0.20
{- find the proportions ...
3
votes
1answer
898 views
matlab matrix scientific notation
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 ...
3
votes
2answers
1k views
Convert scientific notation to decimal notation
There is a similar question on SO which suggests using NumberFormat which is what I have done.
I am using the parse() method of NumberFormat.
public static void main(String[] args) throws ...
3
votes
2answers
2k views
Parsing scientific notation sensibly?
I want to be able to write a function which receives a number in scientific notation as a string and splits out of it the coefficient and the exponent as separate items. I could just use a regular ...
2
votes
2answers
75 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 ...
2
votes
3answers
89 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 ...
2
votes
2answers
98 views
How to do the p-value to print only 4 digits instead of the scientific notation in R?
How to do the p-value to print only 4 digits instead of the scientific notation in R?
I tried to use options (digits = 3, scipen = 12), but it didn't work ...
Here's an example ...
...
2
votes
1answer
80 views
Calculating the median
I have following (exponential) values and want to calculate their median using R:
1.0584e+00
1.1618e+01
4.9097e+00
1.3595e+01
4.2209e+01
4.6901e-01
2.4911e+00
1.2441e+01
6.8128e+00
1.3581e+01
...
2
votes
2answers
203 views
Python - How to convert decimal to scientific notation
How can I display this:
Decimal('40800000000.00000000000000') as '4.08E+10'?
I've tried this:
>>> '%E' % Decimal('40800000000.00000000000000')
'4.080000E+10'
But it has those extra 0's.
2
votes
1answer
291 views
Scientific Notation - bug in .NET?
Yeah I know it's hard to believe - bug in .NET? But run this code in the command line app:
decimal x;
x = decimal.Parse("3.E-2", NumberStyles.Float);
Console.WriteLine(x);
x = ...
2
votes
1answer
210 views
How to disable scientific notation in .AsString in Delphi?
Hi
I want to get numbers from database, for example, if the number in database is 44.7890000000, I would like to get a string 44.789, the same 0.0010000000 -> 0.001, just keep the numbers and trim the ...
2
votes
2answers
143 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
2answers
349 views
Greek/latin scientific JLabel in Java Swing application
For a scientific application I want to design an input form which lets the user enter certain parameters. Some of them are designated using greek letters, some of them have latin letters. The ...
2
votes
2answers
494 views
Reading ASCII numbers using “D” instead of “E” for scientific notation using C
I have a list of numbers which looks like this: 1.234D+1 or 1.234D-02. I want to read the file using C. The function atof will merely ignore the D and translate only the mantissa.
The function fscanf ...
2
votes
2answers
3k views
How can I convert between scientific and decimal notation in Perl?
I know this is a total newbie question, but the answer may not be obvious to many new programmers. It wasn't initially obvious to me so I scoured the Internet looking for Perl modules to do this ...
2
votes
3answers
821 views
Prevent scientific notation in ostream when using << with double
I need to prevent my double to print in scientific notation in my file,
when I do this
outfile<<X;
2
votes
2answers
2k views
String in scientific notation C++ to double conversion
I've got a database filled up with doubles like the following one:
1.60000000000000000000000000000000000e+01
Does anybody know how to convert a number like that to a double in C++?
Is there a ...
2
votes
1answer
781 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:
...
1
vote
3answers
481 views
Convert scientific notation to float when using OpenRowSet to import a .CSV file
I am using openrowset to import a csv file into SQL Server. One of the columns in the csv file contains numbers in scientific notation (1.08E+05) and the column in the table it is being inserted
By ...
1
vote
3answers
120 views
How Can I Prevent PHP SoapClient From Converting Double Value to Scientific Notation?
I'm using the PHP SoapClient and passing a credit card number as one of the values. This number is getting converted to exponential format by the soapCall method. I'm passing 4321432143274321 and ...
1
vote
2answers
238 views
How do you store scientific notation numbers in MySQL
I want to store scientific notation numbers in MySql.
I've saved them to a field which has datatype decimal. The issue is that it stores it in normal notation (at least that what it seems when I view ...
1
vote
2answers
297 views
How to keep doubles from converting to scientific notation when using and stringStream
I'm making a function to return the number of decimal and whole number digits and am converting the inserted typename number to a string using sstreams.
However the number when being converted to a ...
1
vote
1answer
262 views
MS Excel scientific notation (example: 2.231321654E+01)
I am editing a legacy Visual Basic 6.0 program. It reads from a GPIB instrument and obtains a raw string in scientific notation. For example:
2.231321654E+01
Another line in the program processes ...
1
vote
3answers
672 views
Problems with decimals and scientific notation in Python 2.6.6
I'm having difficulty with decimal values that I need to use for arithmetic in some cases and as strings in others. Specifically I have a list of rates, ex:
rates=[0.1,0.000001,0.0000001]
And I am ...
1
vote
1answer
107 views
Parse varying sized arrays in data structure - Java
As a novice Java programmer, I've run into a rather high hurdle while trying to analyze data for a personal project of mine. I have a text
file with ~33.5k data points in the following format:
...
1
vote
1answer
423 views
h:inputText changing to scientific notation
I have an h:inputText control where I can type in numbers up to 7 digits and it will convert them to a decimal representation (ie. type in "9999999" and it will render "9999999.0"). However, when I ...
1
vote
2answers
676 views
Convert a string containing a number in scientific notation to a double in PHP
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 into ...
1
vote
3answers
274 views
scientific notation abstraction in java
Is there a java class abstraction to denote scientific numbers (e.g. the number, 10 power modulus), so that I can do simple operations like multiplication or division on top of them.
Note: Looking ...
1
vote
2answers
229 views
How to force a ndarray show in normal way instead of scientific notation?
I'm trying to print a ndarray on the screen. But python always shows it in scientific notation, which I don't like. For a scalar we can use
>>> print '%2.4f' %(7.47212470e-01)
0.7472
But ...
1
vote
3answers
903 views
Javascript parseFloat '1.23e-7' gives 1.23e-7 when need 0.000000123
parseFloat(1.51e-6);
// returns 0.00000151
parseFloat(1.23e-7);
// returns 1.23e-7
// required 0.000000123
I am sorting table columns containing a wide range of floating-point numbers, some ...
1
vote
5answers
678 views
Only 2 digits in exponent in scientific ofstream
So according to cplusplus.com when you set the format flag of an output stream to scientific notation via
of.setf(ios::scientific)
you should see 3 digits plus and a sign in the exponent. ...
1
vote
8answers
391 views
Why use 'e0' at the end of a defined constant in c?
I'm trying to debug a problem with a perl application that calls some c programs to do text editing.
BATCH_JV_CSH_MAX is used to test the maximum value of an amount field. It currently indicates an ...
0
votes
1answer
56 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
85 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.
0
votes
2answers
72 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 ...
0
votes
2answers
57 views
Issue on sprintf in Matlab
How to print in Matlab Like following....
0.01000E+02
I have tried
sprintf('%12.5e',[0.01000E+02])
it is giving me
1.00000e+000
0
votes
1answer
114 views
Java Convert from Scientific Notation to Float
I have a program that I am working on which would effectively convert binary, decimal, or hex numbers to other formats (don't ask why I'm doing this, I honestly don't know). So far I only have a ...
0
votes
2answers
182 views
Converting a decimal number in scientific notation to IEEE 754
I've read a few texts and threads showing how to convert from a decimal to IEEE 754 but I am still confused as to how I can convert the number without expanding the decimal (which is represented in ...
0
votes
3answers
226 views
C++, scientific notation, format number
Is it possible to format string in scientific notation in the following ways:
set fixed places in exponent: 1
set fixed decimal places in mantisa: 0
double number = 123456.789
So the number ...
0
votes
1answer
117 views
Scientific notation to decimal
I have a double and i am trying to convert it to a decimal. When i use decimalformat to achieve this i get the following:
public void roundNumber(){
double d = 2.081641999208976E-4;
...
0
votes
1answer
272 views
How do I display non-scientific formatted values on a JLabel and JTextField?
I have a string value that could contain a double, integer, ascii or byte value and I put that value into a JLabel. I would like for the double and long values to be in the form of 4000000000000 ...