signal_sum {eseis}R Documentation

Calculate signal vector sum.

Description

The function calculates the vector sum of the input signals.

Usage

signal_sum(...)

Arguments

...

Numeric vectors or eseis objects, input signal, that must be of the same length.

Value

Numeric vector, signal vector sum.

Author(s)

Michael Dietze

Examples


## create random vectors
x <- runif(n = 1000, min = -1, max = 1)
y <- runif(n = 1000, min = -1, max = 1)
z <- runif(n = 1000, min = -1, max = 1)

## calculate vector sums
xyz <- signal_sum(x, y, z)
                     

[Package eseis version 0.7.3 Index]