Con la ayuda del Numpy matrix.round()
método, podemos redondear los valores de la array dada.
Sintaxis:
matrix.round()
Retorno: Devuelve valores redondeados en array .
Ejemplo 1 :
En el ejemplo dado, podemos redondear la array dada usando el matrix.round()
método.
# import the important module in python import numpy as np # make matrix with numpy gfg = np.matrix('[6.4, 1.3; 12.7, 32.3]') # applying matrix.round() method geeks = gfg.round() print(geeks)
Producción:
[[ 6. 1.] [ 13. 32.]]
Ejemplo #2:
# import the important module in python import numpy as np # make a matrix with numpy gfg = np.matrix('[1.2, 2.3; 4.7, 5.5; 7.2, 8.9]') # applying matrix.round() method geeks = gfg.round() print(geeks)
Producción:
[[ 1. 2.] [ 5. 6.] [ 7. 9.]]
Publicación traducida automáticamente
Artículo escrito por Jitender_1998 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA