- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Test array values for positive or negative infinity in Numpy
To test array for positive or negative infinity, use the numpy.isinf() method in Python Numpy. Returns a boolean array of the same shape as x, True where x == +/-inf, otherwise False.
NumPy uses the IEEE Standard for Binary Floating-Point for Arithmetic (IEEE 754). Errors result if the second argument is supplied when the first argument is a scalar, or if the first and second arguments have different shapes.
Steps
At first, import the required library −
import numpy as np
Create an array with some inf values −
arr = np.array([1, 2, 10, 50, -np.inf, 0., np.inf])
Display the arrays −
print("Array...
", arr)
Get the type of the arrays −
print("
Our Array type...
", arr.dtype)
Get the dimensions of the Arrays −
print("
Our Array Dimensions...
",arr.ndim)
Get the number of elements in the Array −
print("
Number of elements...
", arr.size)
To test array for positive or negative infinity, use the numpy.isinf() method in Python Numpy −
print("
Test array for positive or negative infinity...
",np.isinf(arr))
Example
import numpy as np # Create an array with some inf values arr = np.array([1, 2, 10, 50, -np.inf, 0., np.inf]) # Display the array print("Array...
", arr) # Get the type of the array print("
Our Array type...
", arr.dtype) # Get the dimensions of the Array print("
Our Array Dimensions...
",arr.ndim) # Get the number of elements in the Array print("
Number of elements...
", arr.size) # To test array for positive or negative infinity, use the numpy.isinf() method in Python Numpy print("
Test array for positive or negative infinity...
",np.isinf(arr))
Output
Array... [ 1. 2. 10. 50. -inf 0. inf] Our Array type... float64 Our Array Dimensions... 1 Number of elements... 7 Test array for positive or negative infinity... [False False False False True False True]
- Related Articles
- Test element-wise for positive or negative infinity in Numpy
- Test array values for finiteness in Numpy
- Test array values for NaN in Numpy
- How to print positive and negative infinity values in JavaScript?
- Test array values for NaT (not a time) in Numpy
- Converting boolean values to positive or negative sign in MySQL?
- Test Numpy array values for infiniteness and store the result in a new location
- Test array values for finiteness and store the result in a new location in Numpy
- Test array values for NaT and store the result in a new location in Numpy
- Test array values for NaN and store the result in a new location in Numpy
- Replace NaN with zero and fill negative infinity for complex input values in Python
- Replace NaN with zero and fill positive infinity for complex input values in Python
- Test finiteness (not infinity and not Not a Number) in Numpy
- How to GROUP BY in a select query on positive or negative values?
- Find the Pairs of Positive Negative values in an Array using C++\n

Advertisements