StochasticNoisesWienerOn this pageWienerMath BackgroundSoon...Usageimport {stochastic} from 'stochastic-js';const n = 100;const T = 1;const {dW, W} = stochastic.noises.wiener(n, T);// dW is the increments of the Wiener process// W is the generated sample of the Wiener process