Answers for "NumPy unpackbits Code Unpacked array along default axis"

0

NumPy unpackbits Code Unpacked array along default axis

# welcome to softhunt.net
# Python program explaining
# numpy.unpackbits() function

# importing numpy
import numpy as np

# creating input array using
# array function
arr = np.array([122, 15], dtype = np.uint8)
print ("Input array : ", arr)

# unpacking elements of an array
# using unpackbits() function
ans = np.unpackbits(arr)

print ("Output unpacked array : ", ans)
Posted by: Guest on April-29-2022

Python Answers by Framework

Browse Popular Code Answers by Language