NumPy argmax()

1 개요[ | ]

NumPy argmin()
Python
Copy
import numpy as np
a = np.array([[200,400],[100,300]])

print( a.argmax() )
# 1

2 같이 보기[ | ]