R/hessian_row.R

Defines functions hessian_row

#' Hessian Row
#' 
#' Multiply two variables and return colsums
#' TODO
#' 
#' @param x matrix
#' @param pm post multiply
#' @noRd
hessian_row <- function(x, pm) {
  return(colSums(x * pm))
}
Epic-Doughnut/Combined-Reg documentation built on Dec. 17, 2021, 6:32 p.m.