find eigen value and vector in python code example
Example 1: how to find eigenvalues in python
import numpy as np
import matplotlib.pyplot as plt
import scipy.linalg as la
Example 2: how to find eigenvalues in python
A = np.array([[1,0],[0,-2]])
print(A)