signal_mean | R Documentation |
Mean Intensities
signal_mean(...)
## S4 method for signature 'ANY'
signal_mean(...)
... |
Any object that can be interpreted in a suitable way
(see |
Returns a list
with two components x
and y
.
N. Frerebeau
Other signal processing methods:
signal_bind()
,
signal_correct()
,
signal_drift()
,
signal_shift()
,
subset()
## X-ray diffraction
data("XRD")
XRD1 <- signal_drift(XRD, lag = 1500)
## Bind
XRD_bind <- signal_bind(XRD, XRD1)
XRD_bind[, 1:10]
## Mean
XRD_mean <- signal_mean(XRD, XRD1)
plot(NULL, type = "l", xlim = c(10, 70) , ylim = c(3000, 36000),
xlab = expression(2*theta), ylab = "Count")
lines(XRD, type = "l")
lines(XRD1, type = "l")
lines(XRD_mean, type = "l", col = "red")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.