Write a NumPy program to convert a NumPy array of float values to a NumPy array of integer values
import numpy as np x= np.array([[12.0, 12.51], [2.34, 7.98], [25.23, 36.50]]) print("Original array elements:") print(x) print("Convert float values to integer values:") print(x.astype(int))
Sample Output:
Original array elements: [[ 12. 12.51] [ 2.34 7.98] [ 25.23 36.5 ]] Convert float values to integer values: [[12 12] [ 2 7] [25 36]]
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