To write a python program to find the Eigenvalues and Eigen Vectors
- 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 equations and assign in np.array()
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: Prashanth.K
RegisterNumber:212223230152
import numpy as np
A=np.array(([4,2],[2,4]))
values,vectors=np.linalg.eig(A)
print("Eigen values are {} and Eigen Vectors are {}".format(values,vectors))
Thus the Eigenvalue and Eigenvector is successfully solved using python program