To write a python program to find the Eigenvalues and Eigen Vectors
- Hardware – PCs
- Anaconda – Python 3.7 Installation / Moodle-Code Runner
Importing numpy as np
Assigning variable and storing the matrix values
Using the np.linalg.eig(), we get two results (first is eigenvalue and second is eigenvector) of the given matrix.
ENd the program
#Program to find the eigen values and eigen vectors.
#Developed by: DHARSHAN D
#RegisterNumber:23001663
import numpy as np
A=[[4,2],[2,4]]
values,vectors=np.linalg.eig(A)
print("Eigen values are" ,values,"and Eigen Vectors are",vectors)
Thus the Eigenvalue and Eigenvector is successfully solved using python program