R/LLOD.R

Defines functions LLOD

LLOD <-
function(SDB,nB,SDS,nS,muB=0,percentile=0.975){
  # muB is the mean of the Blanck defaults assumed to be 0
  # SDB is the standrd deviation of the Blank
  # nB is the number of data points in the Blank
  # SDS is the standard deviation of the Signal
  # nS is the number of data points in the Signal
  sum(muB, qt(percentile,nB-1)*SDB,qt(percentile,nS-1)*nS)
}
JARS3N/preciseR documentation built on June 30, 2020, 5:08 a.m.