R/noise_for_sim.R

Defines functions noise

noise <- function(X,s){
  out <- rnorm(n = length(X),mean = X, sd = s)
  return(out)
}

Try the BayesMassBal package in your browser

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

BayesMassBal documentation built on June 18, 2022, 1:08 a.m.