Why eigenvectors seem incorrect in python?
I'm trying to get the eigenvalues and eigenvectors from a square matrix with the following commands: import numpy as np A = matrix([[5,2,0],[3,1,-5],[11,4,-4]]) λ, U = np.linalg.eig(A) print...
01 February 2018
5,765
4
View