Re: [R] Eigenvectors and values in R and SAS

2010-01-15 Thread Juliet Hannah
Here is an example that may be helpful. A - matrix(c(-3,5,4,-2),nrow=2,byrow=TRUE) eigs - eigen(A) eigs $values [1] -7 2 $vectors [,1] [,2] [1,] -0.7808688 -0.7071068 [2,] 0.6246950 -0.7071068 The eigenvectors may be scaled differently because they are not unique (or have a

[R] Eigenvectors and values in R and SAS

2010-01-11 Thread jso717
also appreciate it if someone can explain the difference in simple terms. I'm pretty new to both programs. Thanks for your help- -- View this message in context: http://n4.nabble.com/Eigenvectors-and-values-in-R-and-SAS-tp1011510p1011510.html Sent from the R help mailing list archive at Nabble.com

Re: [R] Eigenvectors and values in R and SAS

2010-01-11 Thread Rolf Turner
On 12/01/2010, at 8:31 AM, jso717 wrote: Hi, I was wondering if function eigen() does something different from the function call eigen() in SAS. I'm in the process of translating a SAS code into a R code and the values of the eigenvectors and eigenvalues of a square matrix came out to be

Re: [R] Eigenvectors and values in R and SAS

2010-01-11 Thread David Winsemius
On Jan 11, 2010, at 2:31 PM, jso717 wrote: Hi, I was wondering if function eigen() does something different from the function call eigen() in SAS. I'm in the process of translating a SAS code into a R code and the values of the eigenvectors and eigenvalues of a square matrix came out to be