How to round each element of NumPy 2D array in Python

1 Answer

0 votes
import numpy as np

arr2d = np.array([[4.1, 8.3, 2.6,  5.1], 
                  [6.3, 9.9, 7.08,  1.3], 
                  [2.7, 0.24, 3.14, 11.5]])
                  
arr2d = np.round(arr2d)

print(arr2d)





'''
run:

[[ 4.  8.  3.  5.]
 [ 6. 10.  7.  1.]
 [ 3.  0.  3. 12.]]

'''

 



answered Mar 26, 2023 by avibootz
...