Skip to content

Instantly share code, notes, and snippets.

@Harshit1694
Created July 17, 2019 09:49
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/455fdef53ebb93f84d4384e2a83ecc44 to your computer and use it in GitHub Desktop.
Save Harshit1694/455fdef53ebb93f84d4384e2a83ecc44 to your computer and use it in GitHub Desktop.
#Multiplication of matrix
A<-matrix(c(11,12,13,14,15,16,17,18,19),nrow = 3,byrow = T)
B<-matrix(c(20,21,22,23,24,25,26,27,28),nrow = 3,byrow = T)
A*B
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment