mxnet.np.fmax

fmax(x1, x2, out=None, **kwargs)

Returns element-wise maximum of the input arrays with broadcasting. (Ignores NaNs)

Parameters

x2 (x1,) – The arrays holding the elements to be compared. They must have the same shape, or shapes that can be broadcast to a single shape.

Returns

out – The maximum of x1 and x2, element-wise. This is a scalar if both x1 and x2 are scalars.

Return type

mxnet.numpy.ndarray or scalar

Examples

>>> np.fmax(np.array([2, 3, 4]), np.array([1, 5, 2]))
array([2., 5., 4.])
>>> np.fmax(np.eye(2), np.array([0.5, 2])) # broadcasting
array([[1. , 2. ],
       [0.5, 2. ]])