To write a python program to find the rank of a matrix
- Hardware – PCs
- Anaconda – Python 3.7 Installation / Moodle-Code Runner
Import numpy as np
Initialize a variable 'A' as an array from the np module
Using the np.linalg.matrix_rank(), we can find the rank of the given matrix.
Now print the value
#Program to find the rank of a matrix.
#Developed by: Nithish D M
#RegisterNumber:23009587
import numpy as np
A=np.array([[5,-3,-10],[2,2,-3],[-3,-1,5]])
rank=np.linalg.matrix_rank(A)
print(rank)
Thus the rank for the given matrix is successfully solved by using a python program.