signal_sum: Calculate signal vector sum.

View source: R/signal_sum.R

signal_sumR 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)
                     

coffeemuggler/eseis documentation built on Aug. 19, 2023, 9:57 p.m.