Q:

Write a NumPy program to convert a NumPy array of float values to a NumPy array of integer values

0

Write a NumPy program to convert a NumPy array of float values to a NumPy array of integer values

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

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]]

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now