future_kernapply()
is a futurized version of
stats::kernapply()
, i.e. it computes, in parallel, the
convolution between an input sequence and a specific kernel.
Parallelization takes place over columns when x
is a matrix,
including a ts
matrix.
Usage
future_kernapply(x, ...)
# Default S3 method
future_kernapply(x, k, circular = FALSE, ...)
# S3 method for class 'ts'
future_kernapply(x, k, circular = FALSE, ...)
Value
See stats::kernapply()
for details.