You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Tests each element `x_i` of the input array `x` to determine if finite (i.e., not `NaN` and not equal to positive or negative infinity).
437
+
438
+
#### Parameters
439
+
440
+
-**x**: _<array>_
441
+
442
+
- input array.
443
+
444
+
#### Returns
445
+
446
+
-**out**: _<array>_
447
+
448
+
- an array, whose underlying data type is `bool`, containing test results. An element `out_i` is `True` if `x_i` is finite and `False` otherwise.
449
+
450
+
### <aname="isinf"href="#isinf">#</a> isinf(x, /)
451
+
452
+
Tests each element `x_i` of the input array `x` to determine if equal to positive or negative infinity.
453
+
454
+
#### Parameters
455
+
456
+
-**x**: _<array>_
457
+
458
+
- input array.
459
+
460
+
#### Returns
461
+
462
+
-**out**: _<array>_
463
+
464
+
- an array, whose underlying data type is `bool`, containing test results. An element `out_i` is `True` if `x_i` is either positive or negative infinity and `False` otherwise.
465
+
466
+
### <aname="isnan"href="#isnan">#</a> isnan(x, /)
467
+
468
+
Tests each element `x_i` of the input array `x` to determine whether the element is `NaN`.
469
+
470
+
#### Parameters
471
+
472
+
-**x**: _<array>_
473
+
474
+
- input array.
475
+
476
+
#### Returns
477
+
478
+
-**out**: _<array>_
479
+
480
+
- an array, whose underlying data type is `bool`, containing test results. An element `out_i` is `True` if `x_i` is `NaN` and `False` otherwise.
0 commit comments