mat_mult | R Documentation |
Multiple two matrices and a vector
mat_mult(A, B, x, left = TRUE)
A |
a square matrix |
B |
a square matrix with the same dim as A |
x |
a vector with length equal to length of A |
left |
a boolean option that determines which product is computed first |
matrix product A \times B \times x
mat_mult(cbind(c(1,2),c(3,4)),rbind(c(1,2),(3,4)),c(1,2),True)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.