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