Return the reciprocal of the argument element-wise in Numpy



To return the reciprocal of array elements, element-wise, use the numpy.reciprocal() method in Python Numpy.

The out is a location into which the result is stored. If provided, it must have a shape that the inputs broadcast to. If not provided or None, a freshly-allocated array is returned. A tuple (possible only as a keyword argument) must have length equal to the number of outputs.

The condition is broadcast over the input. At locations where the condition is True, the out array will be set to the ufunc result. Elsewhere, the out array will retain its original value. Note that if an uninitialized out array is created via the default out=None, locations within it where the condition is False will remain uninitialized.

Steps

At first, import the required library −

import numpy as np

Create an array using the array() method −

arr = np.array([5, 2., 7, 1, 500, 1000])

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 Dimension...
",arr.ndim)

Get the shape of the Array −

print("
Our Array Shape...
",arr.shape)

To return the reciprocal of array elements, element-wise, use the numpy.reciprocal() method in Python Numpy −

print("
Result...
",np.reciprocal(arr))

Example

import numpy as np

# Create an array using the array() method
arr = np.array([5, 2., 7, 1, 500, 1000])

# 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 Dimension...
",arr.ndim) # Get the shape of the Array print("
Our Array Shape...
",arr.shape) # To return the reciprocal of array elements, element-wise, use the numpy.reciprocal() method in Python Numpy print("
Result...
",np.reciprocal(arr))

Output

Array...
[ 5. 2. 7. 1. 500. 1000.]

Our Array type...
float64

Our Array Dimension...
1

Our Array Shape...
(6,)

Result...
[0.2 0.5 0.14285714 1.

Advertisements