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