I have been searching already but I have no idea how those e
and j
are called and therefore not found useful information. I am searching for numbers with chars for specification or as operators.
Like this exponetial e
notaion:
1e3 = 1 * 10^(3) = 1000
xen = x * 10^(n) # where x and n are numbers
or imaginary numbers with j
:
1 + 3j
The benefit I am hoping for is to be able to write Ppm(2)
(instance of Ppm
class) conveniently as 2ppm
(where "ppm" is "parts per million" of a frequency in NMR). This can't be thoroughly done with the exponential notation 2e-6
because ppm is referenced to a frequency. Hence it should be distinguished from ordinary numbers.