feemflame | R Documentation |
Given a FEEM cube, model the fluorescence and the scattering signals at the same time as a sum of a PARAFAC model and a low-rank unfolded matrix factorisation.
feemflame(
X, ffac, sfac, maxiter = 32, widths = rep(25, 4), Raman.shift = 3400,
ctol = 1e-04, progress = TRUE, control.parafac, control.cmf
)
## S3 method for class 'feemflame'
fitted(object, ...)
## S3 method for class 'feemflame'
residuals(object, ...)
## S3 method for class 'feemflame'
coef(
object, type = c(
"fluorescence",
"scores", "loadings", "emission", "excitation", "samples",
"scattering", "sc.scores", "sc.loadings"
), ...
)
## S3 method for class 'feemflame'
plot(
x, type = c('both', 'fl.image', 'fl.lines'), ...
)
X |
A |
ffac |
The number of trilinear components used to model fluorescence,
passed to |
sfac |
The number of bilinear (low-rank matrix factorisation) components used to model the scattering signal. |
maxiter |
Maximum number of alternating PARAFAC and constrained matrix factorisation iterations. |
widths |
Widths of the scattering regions, like in
2 lambda2λ \item Raman scattering, 3{2\lambda |
2 lambda2λ
FLAME models the input data as a sum of fluorescence signal (PARAFAC model) and scattering signal (low rank model):
3{ X_k(\lambda^\mathrm{em}_i, \lambda^\mathrm{ex}_j) = \underbrace{\sum_p A_{i,p} B_{j,p} C_{k,p}}_{\mbox{fluorescence}} + \underbrace{\sum_q S_{i,j,q} D_{k,q}}_{\mbox{scattering}}feemflame |
An object of class
|
fitted.feemflame |
A |
residuals.feemparafac |
A |
X - fitted(X)<b>X</b> - <b>X̂</b>, with an extra class
feem.resid
set. Objects of this class are plotted with a
different default palette, see plot.feem.resid
.
The structure of the feemflame
object, the initialisation, and
the constraints may be subject to change in a future version.
Tauler1998
\referenceKrylov2021 https://files.libs.chem.msu.ru/~ivan/SSC17/P13.pdf.
feemparafac
, feemcube
data(feems)
cube <- feemscale(cube)
factors <- feemflame(cube, ffac = 3, sfac = 1)
str(coef(factors))
str(coef(factors, 'scattering'))
plot(factors)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.