📜  矩阵 numpy 的最大值 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:10.992000             🧑  作者: Mango

代码示例1
# Get the maximum element from a Numpy array
maxElement = numpy.amax(arr)
 
print('Max element from Numpy Array : ', maxElement)