用python模拟matlab中的max ,在矩阵中查找最大值,返回行和列索引
时间: 2023-03-30 18:01:30 浏览: 111
可以使用numpy库中的argmax函数来实现,例如:
import numpy as np
matrix = np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9]])
max_index = np.argmax(matrix)
row_index, col_index = np.unravel_index(max_index, matrix.shape)
print("最大值为:", matrix[row_index, col_index])
print("最大值所在的行和列索引分别为:", row_index, col_index)
阅读全文