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