This is a pre-release version (latest). Go to latest (2.4.4)
{ } Raw JSON

bundles / numpy latest / numpy / frexp

ufunc

numpy:frexp

source: /dev/numpy/build-install/usr/lib/python3.14/site-packages/numpy/__init__.py

Summary

Decompose the elements of x into mantissa and twos exponent.

Extended Summary

Returns (mantissa, exponent), where x = mantissa * 2**exponent. The mantissa lies in the open interval(-1, 1), while the twos exponent is a signed integer.

Parameters

x : array_like

Array of numbers to be decomposed.

out1 : ndarray, optional

Output array for the mantissa. Must have the same shape as x.

out2 : ndarray, optional

Output array for the exponent. Must have the same shape as x.

out : ndarray, None, or tuple of ndarray and None, optional

A location into which the result is stored. If provided, it must have a shape that the inputs broadcast to. If not provided or None, a freshly-allocated array is returned. A tuple (possible only as a keyword argument) must have length equal to the number of outputs.

where : array_like, optional

This condition is broadcast over the input. At locations where the condition is True, the out array will be set to the ufunc result. Elsewhere, the out array will retain its original value. Note that if an uninitialized out array is created via the default out=None, locations within it where the condition is False will remain uninitialized.

**kwargs

For other keyword-only arguments, see the ufunc docs <ufuncs.kwargs>.

Returns

mantissa : ndarray

Floating values between -1 and 1. This is a scalar if x is a scalar.

exponent : ndarray

Integer exponents of 2. This is a scalar if x is a scalar.

Notes

Complex dtypes are not supported, they will raise a TypeError.

Examples

import numpy as np
x = np.arange(9)
y1, y2 = np.frexp(x)
y1
y2
y1 * 2**y2

See also

ldexp

Compute y = x1 * 2**x2, the inverse of frexp.

Aliases

  • numpy.frexp