Movatterモバイル変換


[0]ホーム

URL:


Skip to main content
Ctrl+K
JAX  documentation - Home

jax.numpy.fmin

Contents

jax.numpy.fmin#

jax.numpy.fmin(x1,x2)[source]#

Return element-wise minimum of the input arrays.

JAX implementation ofnumpy.fmin().

Parameters:
  • x1 (ArrayLike) – input array or scalar.

  • x2 (ArrayLike) – input array or scalar. x1 and x2 must either have same shape or bebroadcast compatible.

Returns:

An array containing the element-wise minimum of x1 and x2.

Return type:

Array

Note

For each pair of elements,jnp.fmin returns:
  • the smaller of the two if both elements are finite numbers.

  • finite number if one element isnan.

  • -inf if one element is-inf and the other is finite ornan.

  • inf if one element isinf and the other isnan.

  • nan if both elements arenan.

Examples

>>>jnp.fmin(2,3)Array(2, dtype=int32, weak_type=True)>>>jnp.fmin(2,jnp.array([1,4,2,-1]))Array([ 1,  2,  2, -1], dtype=int32)
>>>x1=jnp.array([1,3,2])>>>x2=jnp.array([2,1,4])>>>jnp.fmin(x1,x2)Array([1, 1, 2], dtype=int32)
>>>x3=jnp.array([1,5,3])>>>x4=jnp.array([[2,3,1],...[5,6,7]])>>>jnp.fmin(x3,x4)Array([[1, 3, 1],       [1, 5, 3]], dtype=int32)
>>>nan=jnp.nan>>>x5=jnp.array([jnp.inf,5,nan])>>>x6=jnp.array([[2,3,nan],...[nan,6,7]])>>>jnp.fmin(x5,x6)Array([[ 2.,  3., nan],       [inf,  5.,  7.]], dtype=float32)
Contents

[8]ページ先頭

©2009-2025 Movatter.jp