在 NumPy 中返回给定值的尾数和指数对


要返回给定值的尾数和指数对,请在 Python NumPy 中使用 **numpy.frexp()** 方法。out 是结果存储到的位置。如果提供,则其形状必须与输入广播到的形状相同。如果未提供或为 None,则返回一个新分配的数组。元组(只能作为关键字参数)的长度必须等于输出的数量。

条件在输入上广播。在条件为 True 的位置,out 数组将设置为 ufunc 结果。在其他地方,out 数组将保留其原始值。请注意,如果通过默认的 out=None 创建了一个未初始化的 out 数组,则其中条件为 False 的位置将保持未初始化状态。

步骤

首先,导入所需的库 -

import numpy as np

要返回给定值的尾数和指数对,请在 Python NumPy 中使用 numpy.frexp() 方法。

检查浮点数 -

print("Result? ", np.frexp(6.9))
print("
Result? ", np.frexp(-4.8))

检查整数和无穷大 -

print("
Result? ", np.frexp(40)) print("
Result? ", np.frexp(-np.inf))

检查 NaN 和无穷大 -

print("
Result? ", np.frexp(np.nan)) print("
Result? ", np.frexp(np.inf))

检查对数 -

print("
Result? ", np.frexp(np.log(1))) print("
Result? ", np.frexp(np.log(2)))

示例

import numpy as np

# To return mantissa and exponent as a pair of a given value, use the numpy.frexp() method in Python Numpy
print("Returning the mantissa and exponent...
") # Check for float print("Result? ", np.frexp(6.9)) print("
Result? ", np.frexp(-4.8)) # Check for int and inf print("
Result? ", np.frexp(40)) print("
Result? ", np.frexp(-np.inf)) # Check for nan and inf print("
Result? ", np.frexp(np.nan)) print("
Result? ", np.frexp(np.inf)) # Check for log print("
Result? ", np.frexp(np.log(1))) print("
Result? ", np.frexp(np.log(2)))

输出

Returning the mantissa and exponent...

Result? (0.8625, 3)

Result? (-0.6, 3)

Result? (0.625, 6)

Result? (-inf, 0)

Result? (nan, 0)

Result? (inf, 0)

Result? (0.0, 0)

Result? (0.6931471805599453, 0)

更新于: 2022年2月8日

303 次浏览

启动你的 职业生涯

通过完成课程获得认证

开始
广告