warp.isfinite#

warp.isfinite(a: Scalar) bool#
  • Kernel

Return True if a is a finite number, otherwise return False.

Attention

This function will no longer support integer types as input. Please use float types instead.

warp.isfinite(a: Vector[Any, Scalar]) bool
  • Kernel

Return True if all elements of the vector a are finite, otherwise return False.

Attention

This function will no longer support integer types as input. Please use float types instead.

warp.isfinite(a: Quaternion[Scalar]) bool
  • Kernel

Return True if all elements of the quaternion a are finite, otherwise return False.

Attention

This function will no longer support integer types as input. Please use float types instead.

warp.isfinite(a: Matrix[Any, Any, Scalar]) bool
  • Kernel

Return True if all elements of the matrix a are finite, otherwise return False.

Attention

This function will no longer support integer types as input. Please use float types instead.