本文整理汇总了Python中numpy.lib.ufunclike.isneginf方法的典型用法代码示例。如果您正苦于以下问题:Python ufunclike.isneginf方法的具体用法?Python ufunclike.isneginf怎么用?Python ufunclike.isneginf使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类numpy.lib.ufunclike
的用法示例。
在下文中一共展示了ufunclike.isneginf方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_isneginf
# 需要导入模块: from numpy.lib import ufunclike [as 别名]
# 或者: from numpy.lib.ufunclike import isneginf [as 别名]
def test_isneginf(self):
a = nx.array([nx.inf, -nx.inf, nx.nan, 0.0, 3.0, -3.0])
out = nx.zeros(a.shape, bool)
tgt = nx.array([False, True, False, False, False, False])
res = ufl.isneginf(a)
assert_equal(res, tgt)
res = ufl.isneginf(a, out)
assert_equal(res, tgt)
assert_equal(out, tgt)
a = a.astype(np.complex)
with assert_raises(TypeError):
ufl.isneginf(a)
示例2: test_deprecated
# 需要导入模块: from numpy.lib import ufunclike [as 别名]
# 或者: from numpy.lib.ufunclike import isneginf [as 别名]
def test_deprecated(self):
# NumPy 1.13.0, 2017-04-26
assert_warns(DeprecationWarning, ufl.fix, [1, 2], y=nx.empty(2))
assert_warns(DeprecationWarning, ufl.isposinf, [1, 2], y=nx.empty(2))
assert_warns(DeprecationWarning, ufl.isneginf, [1, 2], y=nx.empty(2))
示例3: test_isneginf
# 需要导入模块: from numpy.lib import ufunclike [as 别名]
# 或者: from numpy.lib.ufunclike import isneginf [as 别名]
def test_isneginf(self):
a = nx.array([nx.inf, -nx.inf, nx.nan, 0.0, 3.0, -3.0])
out = nx.zeros(a.shape, bool)
tgt = nx.array([False, True, False, False, False, False])
res = ufl.isneginf(a)
assert_equal(res, tgt)
res = ufl.isneginf(a, out)
assert_equal(res, tgt)
assert_equal(out, tgt)