Description Usage Arguments Details Value References Examples
Tests the hypothesis that IMFs do not contain more information than white noise.
1 2 3 4 5 6 7 8 9 10 |
object |
|
tt |
Numeric vector of custom time indices. |
type |
The type of significance test to perform. Either the test of
Wu and Huang (2004) ( |
alternative |
Character giving if the alternative hypothesis is
one-sided ( |
H |
Numeric value giving the Hurst exponent necessary for the test of Flandrin et al. (2004). Must be between 0 and 1. |
x |
An |
digits |
The number of digits to print p-values. |
... |
Formatting arguments to be passed to the function
|
In both tests, the first (highest frequency) IMF is used to estimate the noise level of the input signal and is thus never significant.
An object of class imftest
containing the following elements:
object |
The input |
alternative |
The alternative hypothesis. |
type |
The type of test performed. |
logp |
Matrix containing the log mean-period of each IMF. |
loge |
Matrix containing the log energy (variance) of each IMF. |
p.value |
Matrix containing the p-value of the test for each IMF. |
Wu, Z., Huang, N.E., 2004. A study of the characteristics of white noise using the empirical mode decomposition method. Proceedings of the Royal Society of London. Series A: Mathematical, Physical and Engineering Sciences 460, 1597-1611.
Flandrin, P., Goncalves, P., Rilling, G.G., 2004. Detrending and denoising with empirical mode decompositions. Presented at the 12th European Signal Processing Conference, IEEE, Vienna, Austria.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | library(dlnm)
# Decompose both temperature and relative humidity with NA-MEMD
# Adding two noise variables
X <- chicagoNMMAPS[,c("temp", "rhum")]
set.seed(123)
mimfs <- memd(X, l = 2) # Takes a couple of minutes
cmimfs <- combine.mimf(mimfs, list(10:11, 12:13),
new.names = c("C10", "C11"))
# Apply the test of Wu and Huang (2004)
testres <- imf.test(cmimfs)
testres
plot(testres)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.