Nothing
test_that("resampling methods give same results", {
n. <- 100000
set.seed(1234)
nc <- 2
x <- matrix(cumsum(sample(c(-1, 1), n., TRUE)), ncol=nc)
fftz <- mvfft(x)
psd <- Re(fftz * Conj(fftz))
taps <- ceiling(runif(n./nc,10,300))
rsz1 <- resample_fft_rcpp(fftz[,1], taps, verbose = FALSE)
rsz2 <- resample_fft_rcpp(fftz[,2], taps, verbose = FALSE)
rsz3 <- resample_mvfft(fftz, taps, verbose = FALSE)
expect_equal(as.numeric(rsz1$psd), as.numeric(Re(rsz3$psd[,1,1])))
expect_equal(as.numeric(rsz2$psd), as.numeric(Re(rsz3$psd[,2,2])))
})
test_that("riedsid_rcpp gives minimum of matrix", {
n. <- 100000
set.seed(1234)
nc <- 2
x <- matrix(cumsum(sample(c(-1, 1), n., TRUE)), ncol=nc)
fftz <- mvfft(x)
psd <- Re(fftz * Conj(fftz))
taps <- ceiling(runif(n./nc,10,300))
a1 <- riedsid_rcpp(as.matrix(psd)[, 1, drop = FALSE], taps)
a2 <- riedsid_rcpp(psd[, 2, drop = FALSE], taps)
b <- riedsid_rcpp(as.matrix(psd), taps)
expect_equal(apply(cbind(a1,a2), 1, min), as.numeric(b))
})
test_that("check verbose gives message", {
n. <- 100000
set.seed(1234)
nc <- 2
x <- matrix(cumsum(sample(c(-1, 1), n., TRUE)), ncol=nc)
fftz <- mvfft(x)
psd <- Re(fftz * Conj(fftz))
taps <- ceiling(runif(n./nc,10,300))
expect_message(resample_fft_rcpp(fftz[,1], taps, verbose = TRUE))
expect_message(resample_mvfft(fftz, taps, verbose = TRUE))
})
test_that("check forced taper length", {
n. <- 10000
set.seed(1234)
nc <- 2
x <- matrix(cumsum(sample(c(-1, 1), n., TRUE)), ncol=nc)
fftz <- mvfft(x)
psd <- Re(fftz * Conj(fftz))
taps <- ceiling(runif(n./nc,10,300))
expect_warning(resample_fft_rcpp(fftz[,1], 3, verbose = FALSE))
expect_warning(resample_mvfft(fftz, 3, verbose = FALSE))
expect_warning(expect_equal(unique(resample_fft_rcpp(fftz, 3, verbose = FALSE)$k.capped), 3))
expect_warning(expect_equal(unique(resample_mvfft(fftz, 3, verbose = FALSE)$k.capped), 3))
})
test_that("test odd length fft", {
n. <- 204
set.seed(1234)
nc <- 2
x <- matrix(cumsum(sample(c(-1, 1), n., TRUE)), ncol=nc)
fftz <- mvfft(x)
psd <- Re(fftz * Conj(fftz))
taps <- ceiling(runif(n./nc,10,300))
expect_warning(resample_fft_rcpp(fftz[,1], taps, verbose = FALSE))
expect_warning(resample_mvfft(fftz, taps, verbose = FALSE))
})
test_that("short series gives error and warning", {
n. <- 2
set.seed(1234)
nc <- 1
x <- matrix(cumsum(sample(c(-1, 1), n., TRUE)), ncol=nc)
fftz <- mvfft(x)
psd <- Re(fftz * Conj(fftz))
taps <- ceiling(runif(n./nc,10,300))
expect_warning(expect_error(resample_fft_rcpp(fftz[,1], taps, verbose = FALSE)))
expect_warning(expect_error(resample_mvfft(fftz, taps, verbose = FALSE)))
})
# I don't think dbl = 0 is implemented correctly -jrk
# test_that("test single length", {
#
# n. <- 40
# set.seed(1234)
# nc <- 1
# x <- matrix(cumsum(sample(c(-1, 1), n., TRUE)), ncol=nc)
# fftz <- mvfft(x)
# psd <- Re(fftz * Conj(fftz))
# taps <- ceiling(runif(n./nc,10,50))
#
# a1 <- resample_fft_rcpp(fftz[,1], taps, verbose = FALSE, dbl = 0)
# c1 <- Re(resample_mvfft(fftz, taps, verbose = FALSE, dbl = 0)$psd)
# expect_equal(a1, c2)
#
# a2 <- resample_fft_rcpp(fftz[,1], taps, verbose = FALSE, dbl = 1)$psd
# c2 <- as.numeric(Re(resample_mvfft(fftz, taps, verbose = FALSE, dbl = 1)$psd))
# expect_equal(a2, c2)
#
# })
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.