當前位置: 首頁>>代碼示例>>Python>>正文


Python TestCase.__init__方法代碼示例

本文整理匯總了Python中numpy.testing.TestCase.__init__方法的典型用法代碼示例。如果您正苦於以下問題:Python TestCase.__init__方法的具體用法?Python TestCase.__init__怎麽用?Python TestCase.__init__使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在numpy.testing.TestCase的用法示例。


在下文中一共展示了TestCase.__init__方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: __init__

# 需要導入模塊: from numpy.testing import TestCase [as 別名]
# 或者: from numpy.testing.TestCase import __init__ [as 別名]
    def __init__(self, *args, **kw):
        TestCase.__init__(self, *args, **kw)

        self.a = array([[1,2,3],[1,2,3],[2,5,6]])
        self.ca = array([[1,2,3],[1,2,3],[2,5j,6]])
        # Those matrices are more robust to detect problems in permutation
        # matrices than the ones above
        self.b = array([[1,2,3],[4,5,6],[7,8,9]])
        self.cb = array([[1j,2j,3j],[4j,5j,6j],[7j,8j,9j]])

        # Reectangular matrices
        self.hrect = array([[1, 2, 3, 4], [5, 6, 7, 8], [9, 10, 12, 12]])
        self.chrect = 1.j * array([[1, 2, 3, 4], [5, 6, 7, 8], [9, 10, 12, 12]])

        self.vrect = array([[1, 2, 3], [4, 5, 6], [7, 8, 9], [10, 12, 12]])
        self.cvrect = 1.j * array([[1, 2, 3], [4, 5, 6], [7, 8, 9], [10, 12, 12]])

        # Medium sizes matrices
        self.med = rand(30, 40)
        self.cmed = rand(30, 40) + 1.j * rand(30, 40)
開發者ID:dagss,項目名稱:private-scipy-refactor,代碼行數:22,代碼來源:test_decomp.py

示例2: __init__

# 需要導入模塊: from numpy.testing import TestCase [as 別名]
# 或者: from numpy.testing.TestCase import __init__ [as 別名]
 def __init__(self, *args, **kwargs):
     TestCase.__init__(self, *args, **kwargs)
開發者ID:andycasey,項目名稱:scipy,代碼行數:4,代碼來源:test_mstats_basic.py

示例3: __init__

# 需要導入模塊: from numpy.testing import TestCase [as 別名]
# 或者: from numpy.testing.TestCase import __init__ [as 別名]
 def __init__(self, *args, **kwds):
     TestCase.__init__(self, *args, **kwds)
     self.setup()
開發者ID:dyao-vu,項目名稱:meta-core,代碼行數:5,代碼來源:test_mrecords.py

示例4: __init__

# 需要導入模塊: from numpy.testing import TestCase [as 別名]
# 或者: from numpy.testing.TestCase import __init__ [as 別名]
 def __init__(self, *args, **kwargs):
     TestCase.__init__(self, *args, **kwargs)
     CheckDeriv.__init__(self)
開發者ID:argriffing,項目名稱:phyly,代碼行數:5,代碼來源:test_ll_deriv.py


注:本文中的numpy.testing.TestCase.__init__方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。