Write a NumPy program to convert the raw data in an array to a binary string and then create an array.
import numpy as np x = np.array([10, 20, 30], float) print("Original array:") print(x) s = x.tostring() print("Binary string array:") print(s) print("Array using fromstring():") y = np.fromstring(s) print(y)
Sample Output:
Original array: [ 10. 20. 30.] Binary string array: b'\x00\x00\x00\x00\x00\x00$@\x00\x00\x00\x00\x00\x004@\x00\x00\x00\x00\x00\x00>@' Array using fromstring(): [ 10. 20. 30.]
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Sample Output:
need an explanation for this answer? contact us directly to get an explanation for this answer