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 lists from each rank of matrix 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: deepika.j
#RegisterNumber:21005688
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.