Skip to content

Instantly share code, notes, and snippets.

@Harshit1694
Last active July 17, 2019 10:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Harshit1694/b10dc6c3c1888b8a1b716ab5b10a0691 to your computer and use it in GitHub Desktop.
Save Harshit1694/b10dc6c3c1888b8a1b716ab5b10a0691 to your computer and use it in GitHub Desktop.
#Inverse of matrix
B<-matrix(c(30,31,40,41,50,51,60,61,70),nrow = 3,byrow = T)
A<-solve(B)
A
#Determinant of A
det(A)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment