jax.lax.min

Warning

This page was created from a pull request (#9655).

jax.lax.min¶

jax.lax.min(x, y)[source]¶

Elementwise minimum: \(\mathrm{min}(x, y)\)

For complex numbers, uses a lexicographic comparison on the (real, imaginary) pairs.

Parameters
  • x (Any) –

  • y (Any) –

Return type

Any