mix.EM {EMMAgeo} | R Documentation |
Function to mix sample spectres.
Description
This functions allows to mix grain-size distributions with specified proportions and defined noise levels, for example to test the goodness of the EMMA algorithm.
Usage
mix.EM(EM, proportion, noise, autocorrelation)
Arguments
EM |
Each definition is in a separate row with variable contributions in columns. |
proportion |
|
noise |
|
autocorrelation |
|
Details
The function multiplies each end-member with the respective proportion value, sums the resulting variables, adds uniform noise and normalises the resulting mixed sample to 100 %.
Value
Numeric
vector, a sample composed of known proportions of
end-members.
Author(s)
Michael Dietze, Elisabeth Dietze
See Also
Examples
## define end-member loadings and phi vector
EMa.1 <- create.EM(p1 = c(2, 8), p2 = c(1, 0.8), s = c(0.7, 0.3),
boundaries = c(0, 11), n = 80)
EMa.2 <- create.EM(p1 = c(4, 7), p2 = c(1.1, 1.4), s = c(0.5, 0.5),
boundaries = c(0, 11), n = 80)
EMa <- rbind(EMa.1, EMa.2)
phi <- seq(0, 11, length.out = 80)
## mix end-member loadings
sample1 <- mix.EM(EMa, proportion = c(0.3, 0.7))
sample2 <- mix.EM(EMa, proportion = c(0.5, 0.5), noise = 0.1,
autocorrelation = 3)
## plot end-member loadings (grey) and resulting samples (black)
plot(phi, EMa.1, type="l", col = "grey")
lines(phi, EMa.2, col = "grey")
lines(phi, sample1)
lines(phi, sample2)