View source: R/generate_data_brownian.R
generate_brownian_bridge | R Documentation |
Generate a functional time series from an iid Brownian Bridge process.
If W(t)
is a Wiener process, the Brownian Bridge is
defined as W(t) - tW(1)
. Each functional observation is discretized on
the points indicated in v
.
generate_brownian_bridge(N, v = 30, sd = 1)
N |
Numeric. The number of observations for the generated data. |
v |
Numeric (vector). Discretization points of the curves.This can be the evaluated points or the number of evenly spaced points on [0,1]. By default it is evenly spaced on [0,1] with 30 points. |
sd |
Numeric. Standard deviation of the Brownian Motion process.
The default is |
Functional time series (dfts) object.
bbridge <- generate_brownian_bridge(N = 100, v = c(0, 0.2, 0.6, 1, 1.3), sd = 2)
bbridge <- generate_brownian_bridge(N = 100, v = 10, sd = 1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.