scisalt.numpy.frexp10

scisalt.numpy.frexp10(x)[source]

Finds the mantissa and exponent of a number x such that x = m 10^e.

Parameters:

x : float

Number x such that x = m 10^e.

Returns:

mantissa : float

Number m such that x = m 10^e.

exponent : float

Number e such that x = m 10^e.