本文整理匯總了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)