signal_pad {eseis} | R Documentation |
Pad signal with zeros.
Description
The function adds zeros to the input vector to reach a length, corresponding to the next higher power of two.
Usage
signal_pad(data)
Arguments
data |
|
Value
Numeric
vector or list of vectors, signal vector with
added zeros.
Author(s)
Michael Dietze
Examples
## load example data set
data(rockfall)
## pad with zeros
rockfall_pad <- signal_pad(data = rockfall_eseis)
## compare lengths
rockfall_eseis$meta$n
rockfall_pad$meta$n
[Package eseis version 0.7.3 Index]