-4
喜歡,我們可以考慮下面的矩陣: enter image description here如何打印矩陣的所有索引,這是矩陣的最大數目?
現在我想顯示矩陣的最大無的所有索引,而不是僅僅只有一個指標矩陣的最大的。
喜歡,我們可以考慮下面的矩陣: enter image description here如何打印矩陣的所有索引,這是矩陣的最大數目?
現在我想顯示矩陣的最大無的所有索引,而不是僅僅只有一個指標矩陣的最大的。
import numpy as np
mat = np.array([[2,3,2], [7,7,6], [2,7,3]])
print(mat)
max_indices = np.where(mat == np.amax(mat))
print(max_indices)
index_max = mat[max_indices]
print(index_max)
輸出:
[[2 3 2]
[7 7 6]
[2 7 3]]
(array([1, 1, 2]), array([0, 1, 1])) # first array: x-axis, second: y-axis
[7 7 7]
請沒有截圖,而不是寫代碼* *成問題本身。 –
在你的問題中包括你的代碼和問題的明確定義。 – miken32