signal_cut: Cut signal amplitude at standard deviation-defined level.

View source: R/signal_cut.R

signal_cutR Documentation

Cut signal amplitude at standard deviation-defined level.

Description

This function cuts the amplitude of signal parts that exceede a user defined threshold set by k times the standard deviation of the signal.

Usage

signal_cut(data, k = 1)

Arguments

data

eseis object, numeric vector or list of objects, data set to be processed.

k

Numeric value, multiplier of the standard deviation threshold used to cut the signal amplitude. Default is 1 (1 sd).

Value

Numeric vector or list of vectors, cut signal.

Author(s)

Michael Dietze

Examples


## load example data
data(rockfall)

## cut signal
rockfall_cut <- signal_cut(data = rockfall_eseis)


eseis documentation built on Aug. 10, 2023, 5:08 p.m.

Related to signal_cut in eseis...