Skip to content

Instantly share code, notes, and snippets.

@Harshit1694
Last active July 17, 2019 10:14
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
#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