signal_clip | R Documentation |
The function clips a seismic signal based on the corresponding time vector.
signal_clip(data, limits, time)
data |
|
limits |
|
time |
|
Numeric
data set clipped to provided time interval.
Michael Dietze
## load example data
data(rockfall)
## define limits (second 10 to 20 of the signal)
limits <- c(rockfall_t[1] + 10, rockfall_t[1] + 20)
## clip signal
rockfall_clip <- signal_clip(data = rockfall_z,
time = rockfall_t,
limits = limits)
## clip signal using the eseis object
rockfall_clip <- signal_clip(data = rockfall_eseis,
limits = limits)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.