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 the built-in functions for calculation.
Prepare the list from each linear equations 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: Sanjit.P
#RegisterNumber:23002570
import numpy as np
a=[[3,2,5],[1,1,2],[3,3,6]]
b=np.array(a)
print(np.linalg.matrix_rank(b))Thus the rank for the given matrix is successfully solved by using a python program.
