jax.numpy.true_divide
Warning
This page was created from a pull request (#9655).
jax.numpy.true_divide¶
- jax.numpy.true_divide(x1, x2)[source]¶
Returns a true division of the inputs, element-wise.
LAX-backend implementation of
true_divide()
.Original docstring below.
Unlike ‘floor division’, true division adjusts the output type to present the best answer, regardless of input types.
- Parameters
x1 (array_like) – Dividend array.
x2 (array_like) – Divisor array. If
x1.shape != x2.shape
, they must be broadcastable to a common shape (which becomes the shape of the output).
- Returns
out – This is a scalar if both x1 and x2 are scalars.
- Return type
ndarray or scalar