本文简要介绍 python 语言中 numpy.lib.scimath.arctanh
的用法。
用法:
lib.scimath.arctanh(x)
计算 x 的反双曲正切。
返回 “principal value”(有关此内容的说明,请参阅numpy.arctanh) 的
arctanh(x)
.真的x这样abs(x) < 1
,这是一个实数。如果绝对(x)> 1, 或者如果x很复杂,结果也很复杂。最后,x = 1返回``inf``和x=-1
返回-inf
.- x: array_like
需要其 arctanh 的值。
- out: ndarray 或标量
x 值的反双曲正切。如果 x 是标量,则输出,否则返回数组。
参数:
返回:
注意:
对于返回的arctanh()
NAN
真实的时候x不在区间内(-1,1)
, 采用numpy.arctanh(然而,后者确实返回 +/-infx = +/-1
)。例子:
>>> np.set_printoptions(precision=4)
>>> from numpy.testing import suppress_warnings >>> with suppress_warnings() as sup: ... sup.filter(RuntimeWarning) ... np.emath.arctanh(np.eye(2)) array([[inf, 0.], [ 0., inf]]) >>> np.emath.arctanh([1j]) array([0.+0.7854j])
相关用法
- Python numpy scimath.arccos用法及代码示例
- Python numpy scimath.arcsin用法及代码示例
- Python numpy scimath.log用法及代码示例
- Python numpy scimath.logn用法及代码示例
- Python numpy scimath.log2用法及代码示例
- Python numpy scimath.log10用法及代码示例
- Python numpy scimath.sqrt用法及代码示例
- Python numpy scimath.power用法及代码示例
- Python numpy sctype2char用法及代码示例
- Python numpy searchsorted用法及代码示例
- Python numpy shape用法及代码示例
- Python numpy signbit用法及代码示例
- Python numpy setdiff1d用法及代码示例
- Python numpy seterr用法及代码示例
- Python numpy sort用法及代码示例
- Python numpy square用法及代码示例
- Python numpy std用法及代码示例
- Python numpy sum用法及代码示例
- Python numpy spacing用法及代码示例
- Python numpy seterrobj用法及代码示例
- Python numpy squeeze用法及代码示例
- Python numpy shares_memory用法及代码示例
- Python numpy s_用法及代码示例
- Python numpy swapaxes用法及代码示例
- Python numpy show_config用法及代码示例
注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.lib.scimath.arctanh。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。