Skip to content

Instantly share code, notes, and snippets.

@Harshit1694
Created July 17, 2019 09:49
Embed
What would you like to do?
#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