Numpy中一些基本函数参考。
Universal Functions
Universal Functions 也叫 ufunc,比如开根 sqrt,exp:
Sqrt:
1 | arr = np.arange(10) |
exp:
1 | np.exp(arr) |
你有两个数组,它们的长度都是一样的,你需要对比两个数组中对应的值,返回大的:
1 | a = np.random.randn(1,10)*10 |
利用 np 的 maximun 函数就可以做到:
1 | np.maximum(a,b) |
Numpy中一些基本函数参考。
Universal Functions 也叫 ufunc,比如开根 sqrt,exp:
Sqrt:
1 | arr = np.arange(10) |
exp:
1 | np.exp(arr) |
你有两个数组,它们的长度都是一样的,你需要对比两个数组中对应的值,返回大的:
1 | a = np.random.randn(1,10)*10 |
利用 np 的 maximun 函数就可以做到:
1 | np.maximum(a,b) |
微信支付