NumCpp
NumCpp copied to clipboard
maximum can't deal with different array shape like in python
` np.maximum(np.eye(2), [0.5, 2]) # broadcasting
array([[ 1. , 2. ], [ 0.5, 2. ]])`