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


Python Matrix.make_random方法代码示例

本文整理汇总了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()
开发者ID:timonov,项目名称:agile-course-practice-python,代码行数:5,代码来源:viewmodel.py

示例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)
开发者ID:timonov,项目名称:agile-course-practice-python,代码行数:5,代码来源:tests_for_matrix.py

示例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)
开发者ID:timonov,项目名称:agile-course-practice-python,代码行数:5,代码来源:tests_for_matrix.py

示例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)
开发者ID:timonov,项目名称:agile-course-practice-python,代码行数:5,代码来源:tests_for_matrix.py

示例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)
开发者ID:timonov,项目名称:agile-course-practice-python,代码行数:6,代码来源:tests_for_matrix.py


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