Skip to content
Prev 44123 / 398502 Next

left eigenvector

What about the following: 

 > A <- array(1:4, dim=c(2,2))
 > leftA <- eigen(t(A))
 > t(leftA$vectors)
           [,1]       [,2]
[1,] -0.4159736 -0.9093767
[2,] -0.8245648  0.5657675

      hope this helps.  spencer graves
Tom Blackwell wrote: