当前位置: 首页>>代码示例>>Python>>正文


Python core.inf方法代码示例

本文整理汇总了Python中numpy.core.inf方法的典型用法代码示例。如果您正苦于以下问题:Python core.inf方法的具体用法?Python core.inf怎么用?Python core.inf使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在numpy.core的用法示例。


在下文中一共展示了core.inf方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_scalar

# 需要导入模块: from numpy import core [as 别名]
# 或者: from numpy.core import inf [as 别名]
def test_scalar(self):
        x = np.inf
        actual = np.isposinf(x)
        expected = np.True_
        assert_equal(actual, expected)
        assert_equal(type(actual), type(expected))

        x = -3.4
        actual = np.fix(x)
        expected = np.float64(-3.0)
        assert_equal(actual, expected)
        assert_equal(type(actual), type(expected))

        out = np.array(0.0)
        actual = np.fix(x, out=out)
        assert_(actual is out) 
开发者ID:Frank-qlu,项目名称:recruit,代码行数:18,代码来源:test_ufunclike.py

示例2: test_isposinf

# 需要导入模块: from numpy import core [as 别名]
# 或者: from numpy.core import inf [as 别名]
def test_isposinf(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([True, False, False, False, False, False])

        res = ufl.isposinf(a)
        assert_equal(res, tgt)
        res = ufl.isposinf(a, out)
        assert_equal(res, tgt)
        assert_equal(out, tgt)

        a = a.astype(np.complex)
        with assert_raises(TypeError):
            ufl.isposinf(a) 
开发者ID:Frank-qlu,项目名称:recruit,代码行数:16,代码来源:test_ufunclike.py

示例3: test_isneginf

# 需要导入模块: from numpy import core [as 别名]
# 或者: from numpy.core import inf [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) 
开发者ID:Frank-qlu,项目名称:recruit,代码行数:16,代码来源:test_ufunclike.py

示例4: test_isposinf

# 需要导入模块: from numpy import core [as 别名]
# 或者: from numpy.core import inf [as 别名]
def test_isposinf(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([True, False, False, False, False, False])

        res = ufl.isposinf(a)
        assert_equal(res, tgt)
        res = ufl.isposinf(a, out)
        assert_equal(res, tgt)
        assert_equal(out, tgt) 
开发者ID:ryfeus,项目名称:lambda-packs,代码行数:12,代码来源:test_ufunclike.py

示例5: test_isneginf

# 需要导入模块: from numpy import core [as 别名]
# 或者: from numpy.core import inf [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) 
开发者ID:ryfeus,项目名称:lambda-packs,代码行数:12,代码来源:test_ufunclike.py


注:本文中的numpy.core.inf方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。