import numpy as np
m = np.mat("3 -2;1 0")
print("Original matrix:")
print("a\n", m)
w, v = np.linalg.eig(m)
print( "Eigenvalues of the said matrix",w)
print( "Eigenvectors of the said matrix",v)
Sample Output:
Original matrix:
a
[[ 3 -2]
[ 1 0]]
Eigenvalues of the said matrix [ 2. 1.]
Eigenvectors of the said matrix [[ 0.89442719 0.70710678]
[ 0.4472136 0.70710678]]
Sample Output:
need an explanation for this answer? contact us directly to get an explanation for this answer