Python | Numpy matrix.round()
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 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)
[[ 6. 1.] [ 13. 32.]]
# 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)
[[ 1. 2.] [ 5. 6.] [ 7. 9.]]