# In SGC method application, if aliquots have different test
# dose values, their sensitivity-corrected OSL (Lx/Tx) need be
# normalized using their test dose Dt so as to reduce the between-aliquot
# scatter. But in the following example, normalization is unnecessary,
# as the two aliquots share a common test dose.
data1<-cbind(c(0, 18, 36, 54, 72, 0, 18),
c(0.026, 1.55, 2.39, 3.46, 4.13, 0.023, 1.61),
c(0.005, 0.11, 0.27, 0.22, 0.20, 0.008, 0.24))
data2<-cbind(c(0, 18, 36, 54, 72, 0, 18),
c(0.021, 1.47, 2.51, 3.37, 4.31, 0.028, 1.52),
c(0.003, 0.09, 0.35, 0.21, 0.29, 0.01, 0.17))
data <- rbind(data1, data2)
# data3, data4, ... can be added in the same way.
Ltx<-cbind(c(0.5, 1.0, 1.8, 2.3, 2.8, 3.1, 3.6, 4.0),
c(0.02, 0.08, 0.11, 0.12, 0.23, 0.31, 0.33, 0.51))
calED(Curvedata=data, Ltx=Ltx, model= "exp", origin=FALSE)Run the code above in your browser using DataLab