Top "Scientific-notation" questions

Scientific notation is a way of writing numbers.

How to represent scientific notation in C

How do I represent extremely large or small numbers in C with a certain amount of significant figures. For example, …

c opencl scientific-computing scientific-notation
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 …

c++ format scientific-notation
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" % …

python scientific-notation format-specifiers
Scientific notation colorbar in matplotlib

I am trying to put a colorbar to my image using matplotlib. The issue comes when I try to force …

python matplotlib scientific-notation colorbar
Converting number in scientific notation to int

Could someone explain why I can not use int() to convert an integer number represented in string-scientific notation into a …

type-conversion integer python-2.x scientific-notation
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 …

sql-server scientific-notation openrowset
Parsing scientific notation sensibly?

I want to be able to write a function which receives a number in scientific notation as a string and …

regex parsing scientific-notation
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 <&…

c++ iostream scientific-notation
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" …

php string double scientific-notation
Convert scientific notation to decimal - python

How do I convert a scientific notation to floating point number? Here is an example of what I want to …

python scientific-notation floating-point-conversion