本文简要介绍 python 语言中 numpy.lib.scimath.sqrt
的用法。
用法:
lib.scimath.sqrt(x)
计算 x 的平方根。
对于负输入元素,返回一个复数值(与返回 NaN 的
numpy.sqrt
不同)。- x: array_like
输入值。
- out: ndarray 或标量
x 的平方根。如果 x 是标量,则输出,否则返回数组。
参数:
返回:
例子:
对于真实的非负输入,这就像
numpy.sqrt
一样工作:>>> np.emath.sqrt(1) 1.0 >>> np.emath.sqrt([1, 4]) array([1., 2.])
但它会自动处理负输入:
>>> np.emath.sqrt(-1) 1j >>> np.emath.sqrt([-1,4]) array([0.+1.j, 2.+0.j])
相关用法
- Python numpy scimath.log用法及代码示例
- Python numpy scimath.logn用法及代码示例
- Python numpy scimath.log2用法及代码示例
- Python numpy scimath.arccos用法及代码示例
- Python numpy scimath.log10用法及代码示例
- Python numpy scimath.arctanh用法及代码示例
- Python numpy scimath.power用法及代码示例
- Python numpy scimath.arcsin用法及代码示例
- 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.sqrt。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。