Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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)
Source by softhunt.net #
 
PREVIOUS NEXT
Tagged: #NumPy #unpackbits #Code #Unpacked #array #default #axis
ADD COMMENT
Topic
Name
2+2 =