cbind(A,B) [forms matrix with beside ]
rbind(A,B) [forms matrix with on top of ]
A% *%B [forms the matrix product ]
A*X [multiplies matrices and , entry by entry]
solve(A) [computes the inverse matrix of ]
det(A) [computes the determinant of ]
diag(A) [lists the entries of on the leading diagonal]
sum(diag(A)) [computes the trace of ]
eigen(A) [computes the eigenvalues and eigenvectors of ]
exp(A) [computes the matrix formed by exp of each entry of ]
library(expm) [invokes the library for matrix exponential]
expm(A) [computes the matrix exponential ]