本文整理汇总了Python中matrix.Matrix.eye方法的典型用法代码示例。如果您正苦于以下问题:Python Matrix.eye方法的具体用法?Python Matrix.eye怎么用?Python Matrix.eye使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类matrix.Matrix
的用法示例。
在下文中一共展示了Matrix.eye方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_transpose
# 需要导入模块: from matrix import Matrix [as 别名]
# 或者: from matrix.Matrix import eye [as 别名]
def test_transpose(self):
self.m.set(1, 0, 10)
self.m.transpose()
against = Matrix(3, 3)
against.set(0, 1, 10)
self.assertEqual(self.m, against)
against = Matrix.eye(3)
self.e.transpose()
self.assertEqual(self.e, against)
示例2: setUp
# 需要导入模块: from matrix import Matrix [as 别名]
# 或者: from matrix.Matrix import eye [as 别名]
def setUp(self):
self.m = Matrix(3, 3)
self.e = Matrix.eye(3)
pass
示例3: test_submatrix
# 需要导入模块: from matrix import Matrix [as 别名]
# 或者: from matrix.Matrix import eye [as 别名]
def test_submatrix(self):
e2 = Matrix.eye(2)
self.assertEqual(e2, self.e.submatrix(range(2), range(2)))