eig (Eigenvalue and Eigenvector)
[V,D] = eig(A) V: Eigenvector D: Eigenvalue eig -Eigenvalues and eigenvectorsSyntaxd = eig(A) d = eig(A,B) [V,D] = eig(A) [V,D] = eig(A,'nobalance') [V,D] = eig(A,B) [V,D] = eig(A,B,flag) Descriptiond = eig(A) returns a vector of the eigenvalues of matrix A. d = eig(A,B) returns a vector containing the generalized eigenvalues, if A and B are square matrices. Note If S is sparse and symmetric, yo..
더보기