isfinite#
- ivy.isfinite(x, /, *, out=None)[source]#
Test each element
x_i
of the input arrayx
to determine if finite (i.e., notNaN
and not equal to positive or negative infinity).- Parameters:
- Return type:
- Returns:
ret – an array containing test results. An element
out_i
isTrue
ifx_i
is finite andFalse
otherwise. The returned array must have a data type ofbool
.
Special Cases
For real-valued floating-point operands,
If
x_i
is either+infinity
or-infinity
, the result isFalse
.if
x_i
isNaN
, the result isFalse
.if
x_i
is a finite number, the result isTrue
.
For complex floating-point operands, let
a = real(x_i)
,b = imag(x_i)
, andIf
a
isNaN
orb
isNaN
, the result isFalse
.
- _ If
a
is either+infinity
or-infinity
andb
is any value, the result is
False
.
If
a
is any value andb
is either+infinity
or-infinity
, the result isFalse
.If
a
is a finite number andb
is a finite number, the result isTrue
.
This method conforms to the `Array API Standard<https://data-apis.org/array-api/latest/>`_. This docstring is an extension of the docstring <https://data-apis.org/array-api/latest/ API_specification/generated/array_api.isfinite.html> _ in the standard.
Both the description and the type hints above assumes an array input for simplicity, but this function is nestable, and therefore also accepts
ivy.Container
instances in place of any of the arguments.Examples
With
ivy.Array
input:>>> x = ivy.array([0, ivy.nan, -ivy.inf, float('inf')]) >>> y = ivy.isfinite(x) >>> print(y) ivy.array([ True, False, False, False])
>>> x = ivy.array([0, ivy.nan, -ivy.inf]) >>> y = ivy.zeros(3) >>> ivy.isfinite(x, out=y) >>> print(y) ivy.array([1., 0., 0.])
>>> x = ivy.array([[9, float('-0')], [ivy.nan, ivy.inf]]) >>> ivy.isfinite(x, out=x) >>> print(x) ivy.array([[1., 1.], [0., 0.]])
With
ivy.Container
input:>>> x = ivy.Container(a=ivy.array([0., 999999999999]), ... b=ivy.array([float('-0'), ivy.nan])) >>> y = ivy.isfinite(x) >>> print(y) { a: ivy.array([True, True]), b: ivy.array([True, False]) }
- Array.isfinite(self, *, out=None)[source]#
ivy.Array instance method variant of ivy.isfinite. This method simply wraps the function, and so the docstring for ivy.isfinite also applies to this method with minimal changes.
- Parameters:
self (
Array
) – input array. Should have a real-valued data type.out (
Optional
[Array
], default:None
) – optional output array, for writing the result to. It must have a shape that the inputs broadcast to.
- Return type:
Array
- Returns:
ret – an array containing test results. An element
out_i
isTrue
ifself_i
is finite andFalse
otherwise. The returned array must have a data type ofbool
.
Examples
>>> x = ivy.array([0, ivy.nan, -ivy.inf, float('inf')]) >>> y = x.isfinite() >>> print(y) ivy.array([ True, False, False, False])
- Container.isfinite(self, *, key_chains=None, to_apply=True, prune_unapplied=False, map_sequences=False, out=None)[source]#
ivy.Container instance method variant of ivy.isfinite. This method simply wraps the function, and so the docstring for ivy.isfinite also applies to this method with minimal changes.
- Parameters:
self (
Container
) – input container. Should have a real-valued data type.key_chains (
Optional
[Union
[List
[str
],Dict
[str
,str
],Container
]], default:None
) – The key-chains to apply or not apply the method to. Default isNone
.to_apply (
Union
[bool
,Container
], default:True
) – If True, the method will be applied to key_chains, otherwise key_chains will be skipped. Default isTrue
.prune_unapplied (
Union
[bool
,Container
], default:False
) – Whether to prune key_chains for which the function was not applied. Default isFalse
.map_sequences (
Union
[bool
,Container
], default:False
) – Whether to also map method to sequences (lists, tuples). Default isFalse
.out (
Optional
[Container
], default:None
) – optional output container, for writing the result to. It must have a shape that the inputs broadcast to.
- Return type:
Container
- Returns:
ret – a container containing the test result. An element
out_i
isTrue
ifself_i
is finite andFalse
otherwise. The returned array must have a data type ofbool
.
Examples
>>> x = ivy.Container(a=ivy.array([0., 999999999999]), ... b=ivy.array([float('-0'), ivy.nan])) >>> y = x.isfinite() >>> print(y) { a: ivy.array([True, True]), b: ivy.array([True, False]) }