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


Python numpy.False_方法代码示例

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


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

示例1: test_bool_column

# 需要导入模块: import numpy [as 别名]
# 或者: from numpy import False_ [as 别名]
def test_bool_column(tmpdir):
    """
    Regression test for https://github.com/astropy/astropy/issues/1953

    Ensures that Table columns of bools are properly written to a FITS table.
    """

    arr = np.ones(5, dtype=bool)
    arr[::2] == np.False_

    t = Table([arr])
    t.write(str(tmpdir.join('test.fits')), overwrite=True)

    with fits.open(str(tmpdir.join('test.fits'))) as hdul:
        assert hdul[1].data['col0'].dtype == np.dtype('bool')
        assert np.all(hdul[1].data['col0'] == arr) 
开发者ID:holzschu,项目名称:Carnets,代码行数:18,代码来源:test_connect.py

示例2: test_logical

# 需要导入模块: import numpy [as 别名]
# 或者: from numpy import False_ [as 别名]
def test_logical(self):
        f = np.False_
        t = np.True_
        s = "xyz"
        assert_((t and s) is s)
        assert_((f and s) is f) 
开发者ID:Frank-qlu,项目名称:recruit,代码行数:8,代码来源:test_numeric.py

示例3: test_bitwise_or

# 需要导入模块: import numpy [as 别名]
# 或者: from numpy import False_ [as 别名]
def test_bitwise_or(self):
        f = np.False_
        t = np.True_
        assert_((t | t) is t)
        assert_((f | t) is t)
        assert_((t | f) is t)
        assert_((f | f) is f) 
开发者ID:Frank-qlu,项目名称:recruit,代码行数:9,代码来源:test_numeric.py

示例4: test_bitwise_and

# 需要导入模块: import numpy [as 别名]
# 或者: from numpy import False_ [as 别名]
def test_bitwise_and(self):
        f = np.False_
        t = np.True_
        assert_((t & t) is t)
        assert_((f & t) is f)
        assert_((t & f) is f)
        assert_((f & f) is f) 
开发者ID:Frank-qlu,项目名称:recruit,代码行数:9,代码来源:test_numeric.py

示例5: test_bitwise_xor

# 需要导入模块: import numpy [as 别名]
# 或者: from numpy import False_ [as 别名]
def test_bitwise_xor(self):
        f = np.False_
        t = np.True_
        assert_((t ^ t) is f)
        assert_((f ^ t) is t)
        assert_((t ^ f) is t)
        assert_((f ^ f) is f) 
开发者ID:Frank-qlu,项目名称:recruit,代码行数:9,代码来源:test_numeric.py

示例6: test_non_finite_scalar

# 需要导入模块: import numpy [as 别名]
# 或者: from numpy import False_ [as 别名]
def test_non_finite_scalar(self):
        # GH7014, when two scalars are compared the output should also be a
        # scalar
        assert_(np.isclose(np.inf, -np.inf) is np.False_)
        assert_(np.isclose(0, np.inf) is np.False_)
        assert_(type(np.isclose(0, np.inf)) is np.bool_) 
开发者ID:Frank-qlu,项目名称:recruit,代码行数:8,代码来源:test_numeric.py

示例7: test_logical

# 需要导入模块: import numpy [as 别名]
# 或者: from numpy import False_ [as 别名]
def test_logical(self):
        f = np.False_
        t = np.True_
        s = "xyz"
        self.assertTrue((t and s) is s)
        self.assertTrue((f and s) is f) 
开发者ID:abhisuri97,项目名称:auto-alt-text-lambda-api,代码行数:8,代码来源:test_numeric.py

示例8: test_bitwise_or

# 需要导入模块: import numpy [as 别名]
# 或者: from numpy import False_ [as 别名]
def test_bitwise_or(self):
        f = np.False_
        t = np.True_
        self.assertTrue((t | t) is t)
        self.assertTrue((f | t) is t)
        self.assertTrue((t | f) is t)
        self.assertTrue((f | f) is f) 
开发者ID:abhisuri97,项目名称:auto-alt-text-lambda-api,代码行数:9,代码来源:test_numeric.py

示例9: test_bitwise_and

# 需要导入模块: import numpy [as 别名]
# 或者: from numpy import False_ [as 别名]
def test_bitwise_and(self):
        f = np.False_
        t = np.True_
        self.assertTrue((t & t) is t)
        self.assertTrue((f & t) is f)
        self.assertTrue((t & f) is f)
        self.assertTrue((f & f) is f) 
开发者ID:abhisuri97,项目名称:auto-alt-text-lambda-api,代码行数:9,代码来源:test_numeric.py

示例10: test_bitwise_xor

# 需要导入模块: import numpy [as 别名]
# 或者: from numpy import False_ [as 别名]
def test_bitwise_xor(self):
        f = np.False_
        t = np.True_
        self.assertTrue((t ^ t) is f)
        self.assertTrue((f ^ t) is t)
        self.assertTrue((t ^ f) is t)
        self.assertTrue((f ^ f) is f) 
开发者ID:abhisuri97,项目名称:auto-alt-text-lambda-api,代码行数:9,代码来源:test_numeric.py


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