Subtract two arrays element-wise.
JAX implementation of numpy.subtract
. This is a universal function, and supports the additional APIs described at jax.numpy.ufunc
. This function provides the implementation of the -
operator for JAX arrays.
x – arrays to subtract. Must be broadcastable to a common shape.
y – arrays to subtract. Must be broadcastable to a common shape.
args (ArrayLike)
out (None)
where (None)
Array containing the result of the element-wise subtraction.
Any
Examples
Calling subtract
explicitly:
>>> x = jnp.arange(4) >>> jnp.subtract(x, 10) Array([-10, -9, -8, -7], dtype=int32)
Calling subtract
via the -
operator:
>>> x - 10 Array([-10, -9, -8, -7], dtype=int32)
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.3