Open In App

Python | Numpy matrix.clip()

Last Updated : 10 Apr, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

With the help of Numpy matrix.clip() method, we can select the elements from a matrix by passing a parameter as minimum value and maximum value. Output array having the range in between those parameters and size of a matrix will be same.

Syntax : matrix.clip()

Return : Return a matrix having value in between min and max values.

Example #1 :
In this example we can see that with the help of matrix.clip() method we are able to clip the matrix in between min value and max value.




# import the important module in python
import numpy as np
             
# make a matrix with numpy
gfg = np.matrix('[1, 2, 3, 4; 3, 1, 5, 6]')
             
# applying matrix.clip() method
geeks = gfg.clip(1, 4)
       
print(geeks)


Output:

[[1 2 3 4]
 [3 1 4 4]]

Example #2 :




# import the important module in python
import numpy as np
             
# make a matrix with numpy
gfg = np.matrix('[1, 2, 3; 4, 5, 6; 7, 8, 9]')
             
# applying matrix.clip() method
geeks = gfg.clip(4, 9)
       
print(geeks)


Output:

[[4 4 4]
 [4 5 6]
 [7 8 9]]

Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads