Last active
July 17, 2019 10:01
-
-
Save Harshit1694/b10dc6c3c1888b8a1b716ab5b10a0691 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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