Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
说我有:
A = np.array( [1,2,3,-8] )
我需要一个返回 8 的函数
我知道这是一个简单的,但即时 Google-Fu 失败了,因此填充 SO 可能有一些优点。
您可以尝试运行:
np.abs(A).max()