这个 努比。isinf() 函数测试元素是否为+ve或-ve无穷大,并以布尔数组的形式返回结果。
null
Syntax: numpy.isinf(array [, out])
参数:
array : [array_like]Input array or object whose elements, we need to test for infinityout : [ndarray, optional]Output array placed with result. Its type is preserved and it must be of the right shape to hold the output.
返回:
boolean array containing the result. For scalar input, the result is a new boolean with valueTrue if the input is positive or negative infinity; otherwise the value is False. For array input, the result is a boolean array with the same shape as the input and the values are True where the corresponding element of the input is positiveor negative infinity; elsewhere the values are False.
代码1:
python
# Python Program illustrating # numpy.isinf() method import numpy as geek print ( "Finite : " , geek.isinf( 1 ), "" ) print ( "Finite : " , geek.isinf( 0 ), "" ) # not a number print ( "Finite : " , geek.isinf(geek.nan), "" ) # infinity print ( "Finite : " , geek.isinf(geek.inf), "" ) print ( "Finite : " , geek.isinf(geek.NINF), "" ) x = geek.array([ - geek.inf, 0. , geek.inf]) y = geek.array([ 2 , 2 , 2 ]) print ( "Checking for infinity : " , geek.isinf(x, y)) |
输出:
Finite : False Finite : False Finite : False Finite : True Finite : True Checking for infinity : [1 0 1]
代码2:
python
# Python Program illustrating # numpy.isinf() method import numpy as geek # Returns True/False value for each element b = geek.arange( 8 ).reshape( 2 , 4 ) print ( "" ,b) print ( "Is Infinity : " , geek.isinf(b)) # geek.inf : Positive Infinity # geek.NINF : negative Infinity b = [[geek.inf], [geek.NINF]] print ( "Is Infinity : " , geek.isinf(b)) |
输出:
[[0 1 2 3] [4 5 6 7]]Is Infinity : [[False False False False] [False False False False]]Is Infinity : [[ True] [ True]]
参考资料: https://docs.scipy.org/doc/numpy-dev/reference/generated/numpy.isinf.html#numpy.isinf
注: 这些代码不会在online-ID上运行。请在您的系统上运行它们以探索工作环境。 本文由 莫希特·古普塔(Mohit Gupta_OMG) .如果你喜欢GeekSforgek,并想贡献自己的力量,你也可以使用 写极客。组织 或者把你的文章寄去评论-team@geeksforgeeks.org.看到你的文章出现在Geeksforgeks主页上,并帮助其他极客。 如果您发现任何不正确的地方,或者您想分享有关上述主题的更多信息,请写下评论。
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END