Numpy Unpackbits Code Unpacked Array di sepanjang sumbu default

# 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)
Outrageous Ostrich