R/RcppExports.R

Defines functions matrix_mult_cpp

Documented in matrix_mult_cpp

# Generated by using Rcpp::compileAttributes() -> do not edit by hand
# Generator token: 10BE3573-1514-4C36-9D1C-5A225CD40393

#' Simple matrix multiplication
#'
#' @param A Matrix
#' @param B Matrix
#'
#' @return Product of matrices
#' @export
#'
#' @examples
#' A <- matrix(1:9, 3, 3)
#' B <- matrix(11:19, 3, 3)
#' matrix_mult_cpp(A, B)
matrix_mult_cpp <- function(A, B) {
    .Call(`_mypackage_matrix_mult_cpp`, A, B)
}
fcheysson/mypackage documentation built on Nov. 4, 2019, 12:38 p.m.