R/m.R

Defines functions m

Documented in m

#' @title Product function used in the deep regression context
#' @description Product function used in the deep regression context
#' @param a the first argument
#' @param b the second argument
#' @return \code{m(a,b)}, product of the arguments a*b
#' @examples m(10,2)
#' @export
#' @keywords methods models
m <- function(a, b) a * b

Try the EMJMCMC package in your browser

Any scripts or data that you put into this service are public.

EMJMCMC documentation built on June 22, 2024, 11:34 a.m.