Learn R Programming

eseis (version 0.7.3)

signal_sum: Calculate signal vector sum.

Description

The function calculates the vector sum of the input signals.

Usage

signal_sum(...)

Value

Numeric vector, signal vector sum.

Arguments

...

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

Author

Michael Dietze

Examples

Run this code

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

Run the code above in your browser using DataLab