weibullDecay {PathwaySpace} | R Documentation |
Weibull decay function.
Description
The weibullDecay
function is used by
PathwaySpace's methods for signal convolution and projection.
Usage
weibullDecay(x, signal, decay = 0.999, shape = 1.05)
Arguments
x |
A numeric vector of distances (in [0,1]). |
signal |
A single numeric value representing a signal. |
decay |
The rate (in [0,1]) at which the signal decays.
This term indicates how much the |
shape |
A parameter (>=1) of a Weibull function. When |
Value
A numeric vector.
Author(s)
Vinicius Chagas, Victor Apolonio, and Mauro Castro (mauro.castro@ufpr.br)
See Also
Examples
x <- c(1:100) / 100
y <- weibullDecay(x, 1)
plot(x, y)
[Package PathwaySpace version 1.0.1 Index]