Skip to content

Instantly share code, notes, and snippets.

@Harshit1694
Last active July 17, 2019 10:14
Show Gist options
  • Save Harshit1694/674bb6c71544f9c46b67c3d33f1b678e to your computer and use it in GitHub Desktop.
Save Harshit1694/674bb6c71544f9c46b67c3d33f1b678e to your computer and use it in GitHub Desktop.
#Calculating eigenvalues and eigenvectors
A<-matrix(c(30,31,40,41,50,51,60,61,70),nrow = 3,byrow = T)
e <- eigen(A)
e$values
e$vectors
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment