Hi petit,
Eigenvectors calculated by Matlab are normalized, but neither (a) the the overall phase of each one or (b) the order ot the eigenvalues and the corresponding columns of the eigenvectors are guaranted to be anything in particular. But if AX = aX and BX = bX, then for
[vA lambdaA] = eig(A)
[vB lambdaB] = eig(B)
there will be a case where a column of Va and a column vB differ by only a phase factor. So in the matrix product vA'*vB there be an entry of absolute value 1, the phase factor.
n = 6;
v = 2*rand(n,n)-1 +i*(2*rand(n,n)-1);
w = 2*rand(n,n)-1 +i*(2*rand(n,n)-1);
lamv = rand(n,1);
lamw = rand(n,1);
w(:,2) = v(:,3);
w(:,4) = v(:,5);
A = (v*diag(lamv))/v;
B = (w*diag(lamw))/w;
[vA lamA] = eig(A);
[vB lamB] = eig(B);
vAvB = vA'*vB;
[j k] = find(abs(abs(vAvB)-1)<1e-12)
vA(:,j(1))./vB(:,k(1))
vA(:,j(2))./vB(:,k(2))
This method works as long as for the eigenvectors in question, the eigenvalues are distinct. If there are repeated eigenvalues, then if A has eigenvectors x and y, B might have eigenvectors that are linear combinartions of x and y. Then the job gets a lot harder.
You can also use the fact that
to look for cases where an eigenvalue of (A-B) equals (a-b), where a is one of the eigenvalues of A and B is one of the eigenvalues of B. However, this method is likely to be more prone to false positives than is the first method.
2 Comments
Direct link to this comment
https://de.mathworks.com/matlabcentral/answers/707578-find-the-common-eigenvectors-and-eigenvalues-between-2-matrices#comment_1243023
Direct link to this comment
https://de.mathworks.com/matlabcentral/answers/707578-find-the-common-eigenvectors-and-eigenvalues-between-2-matrices#comment_1243023
Direct link to this comment
https://de.mathworks.com/matlabcentral/answers/707578-find-the-common-eigenvectors-and-eigenvalues-between-2-matrices#comment_1243223
Direct link to this comment
https://de.mathworks.com/matlabcentral/answers/707578-find-the-common-eigenvectors-and-eigenvalues-between-2-matrices#comment_1243223
Sign in to comment.