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


Python Matrix.identity方法代码示例

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


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

示例1: test_identity

# 需要导入模块: from ert.util import Matrix [as 别名]
# 或者: from ert.util.Matrix import identity [as 别名]
    def test_identity(self):
        m1 = Matrix.identity(1)
        self.assertEqual(m1.rows(), 1)
        self.assertEqual(m1.columns(), 1)
        self.assertEqual(m1[0,0], 1)

        with self.assertRaises(ValueError):
            Matrix.identity(0)
        with self.assertRaises(ValueError):
            Matrix.identity(-3)

        m = Matrix.identity(17)
        self.assertEqual(m.rows(), 17)
        self.assertEqual(m.columns(), 17)
        for i in range(17):
            for j in range(17):
                elt = m[i, j]
                if i == j:
                    self.assertEqual(elt, 1)
                else:
                    self.assertEqual(elt, 0)
开发者ID:Ensembles,项目名称:ert,代码行数:23,代码来源:test_matrix.py

示例2: _n_identity_mcs

# 需要导入模块: from ert.util import Matrix [as 别名]
# 或者: from ert.util.Matrix import identity [as 别名]
 def _n_identity_mcs(self, n=6,s=3):
     """return n copies of the identity matrix on s*s elts"""
     return tuple([Matrix.identity(s) for i in range(n)])
开发者ID:Ensembles,项目名称:ert,代码行数:5,代码来源:test_analysis_module.py


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