To write a python program to find the rank of a matrix
- Hardware – PCs
- Anaconda – Python 3.7 Installation / Moodle-Code Runner
Import the numpy module to use built-in functions for calculations
Prepare the list from matrix's each row and assign in np.array()
Using the np.linalg.matrix_rank(), we can find the rank of the given matrix.
End the program
#Program to find the rank of a matrix.
#Developed by: P.Sri Varshan
#RegisterNumber: 22008051
import numpy as np
A = np.array([[3,2,5],[1,1,2],[3,6,9]])
B = np.linalg.matrix_rank(A)
print(B)
Thus the rank for the given matrix is successfully solved by using a python program.