Python | Numpy matrix.round() (original) (raw)

Last Updated : 23 Apr, 2019

With the help of **Numpy matrix.round()** method, we are able to round off the values of the given matrix.

Syntax : matrix.round()

Return : Return rounded values in matrix

Example #1 :

In the given example we are able to round off the given matrix by using matrix.round() method.

import numpy as np

gfg = np.matrix( '[6.4, 1.3; 12.7, 32.3]' )

geeks = gfg. round ()

print (geeks)

Output:

[[ 6. 1.] [ 13. 32.]]

Example #2 :

import numpy as np

gfg = np.matrix( '[1.2, 2.3; 4.7, 5.5; 7.2, 8.9]' )

geeks = gfg. round ()

print (geeks)

Output:

[[ 1. 2.] [ 5. 6.] [ 7. 9.]]

Similar Reads