Skip to main content

Brownian Bridge

Math Background

Soon...

Usage

import {stochastic} from 'stochastic-js';

const n = 100;
const T = 1;

const {B} = stochastic.noises.brownianBridge(n, T);

// B is the generated sample of the brownian bridge.