當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。