Skip to content
Prev 30236 / 398506 Next

Matrix eigenvectors in R and MatLab

Excellent analysis, Thomas.  An alternative to looking at EISPACK 
documentation is to do the following computations:

	(1) Values %*% diag(vectors) %*% solve(Values)

	(2) solve(Values) %*% diag(vectors) %*% Values

One of these two should return the original matrix; the other will 
likely be very different.  If so, the mystery is solved.  If (1) returns
PA9900, then

	PA9900 %*% Values = Values %*% diag(vectors)

Else

	Values %*% PA9900 = diag(vectors) %*% Values

Best Wishes,
Spencer Graves
Thomas W Blackwell wrote: