VOOZH about

URL: https://www.geeksforgeeks.org/python/python-numpy-matrix-round/

⇱ Python | Numpy matrix.round() - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Python | Numpy matrix.round()

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.
Output:
[[ 6. 1.]
 [ 13. 32.]]
  Example #2 :
Output:
[[ 1. 2.]
 [ 5. 6.]
 [ 7. 9.]]
Comment