Skip to content

Instantly share code, notes, and snippets.

@Harshit1694
Last active July 17, 2019 10:01
Embed
What would you like to do?
#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