当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python dask.array.float_power用法及代码示例


用法:

dask.array.float_power(x1, x2, /, out=None, *, where=True, casting='same_kind', order='K', dtype=None, subok=True[, signature, extobj]) = <ufunc 'float_power'>

此文档字符串是从 numpy.float_power 复制的。

可能存在与 Dask 版本的一些不一致之处。

第一个数组元素按元素从第二个数组提升到幂。

x1 中的每个碱基提高到 x2 中的位置对应幂。 x1x2 必须可广播到相同的形状。这与幂函数的不同之处在于整数、float16 和 float32 被提升为具有最小精度为 float64 的浮点数,因此结果总是不精确的。目的是该函数将为负幂返回一个可用的结果,而对于正幂则很少溢出。

将负值提升为非整数值将返回 nan 。要获得复数结果,请将输入转换为复数,或将 dtype 指定为 complex(参见下面的示例)。

参数

x1array_like

基地。

x2array_like

index 。如果 x1.shape != x2.shape ,它们必须可以广播到一个公共形状(成为输出的形状)。

outndarray,None,或 ndarray 和 None 的元组,可选

存储结果的位置。如果提供,它必须具有输入广播到的形状。如果未提供或 None,则返回一个新分配的数组。元组(只能作为关键字参数)的长度必须等于输出的数量。

where数组,可选

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

**kwargs

对于其他仅关键字参数,请参阅 ufunc 文档。

返回

yndarray

x1 中的基数提升为 x2 中的 index 。如果 x1x2 都是标量,则这是一个标量。

例子

立方体列表中的每个元素。

>>> x1 = range(6)  
>>> x1  
[0, 1, 2, 3, 4, 5]
>>> np.float_power(x1, 3)  
array([   0.,    1.,    8.,   27.,   64.,  125.])

将基数提高到不同的 index 。

>>> x2 = [1.0, 2.0, 3.0, 3.0, 2.0, 1.0]  
>>> np.float_power(x1, x2)  
array([  0.,   1.,   8.,  27.,  16.,   5.])

广播的效果。

>>> x2 = np.array([[1, 2, 3, 3, 2, 1], [1, 2, 3, 3, 2, 1]])  
>>> x2  
array([[1, 2, 3, 3, 2, 1],
       [1, 2, 3, 3, 2, 1]])
>>> np.float_power(x1, x2)  
array([[  0.,   1.,   8.,  27.,  16.,   5.],
       [  0.,   1.,   8.,  27.,  16.,   5.]])

将负值提升为非整数值将导致 nan(并会生成警告)。

>>> x3 = np.array([-1, -4])  
>>> with np.errstate(invalid='ignore'):  
...     p = np.float_power(x3, 1.5)
...
>>> p  
array([nan, nan])

要获得复杂的结果,请给出参数 dtype=complex

>>> np.float_power(x3, 1.5, dtype=complex)  
array([-1.83697020e-16-1.j, -1.46957616e-15-8.j])

相关用法


注:本文由纯净天空筛选整理自dask.org大神的英文原创作品 dask.array.float_power。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。