This function simply allowing to merge RLum.Data.Curve
objects without touching the objects itself. Merging is always applied on
the 2nd colum of the data matrix of the object.Supported merge operations are
RLum.Data.Curve
"sum"
All count values will be summed up using the function rowSums
.
"mean"
The mean over the count values is calculated using the function
rowMeans
.
"median"
The median over the count values is calculated using the function
rowMedians
.
"sd"
The standard deviation over the count values is calculated using the function
rowSds
.
"var"
The variance over the count values is calculated using the function
rowVars
.
"min"
The min values from the count values is chosen using the function
rowMins
.
"max"
The max values from the count values is chosen using the function
rowMins
.
"append"
Appends count values of all curves to one combined data curve. The channel width
is automatically re-calculated, but requires a constant channel width of the
original data.
"-"
The row sums of the last objects are subtracted from the first object.
"*"
The row sums of the last objects are mutliplied with the first object.
"/"
Values of the first object are divided by row sums of the last objects.