Learn R Programming

eseis (version 0.5.0)

signal_sum: 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.

Examples

Run this code
# NOT RUN {
## 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