stochastic_gbm/
lib.rs

1/// A library for simulating stochastic processes, including Geometric Brownian Motion (GBM).
2///
3/// Geometric Brownian Motion (GBM) is used to model the price movements of financial assets.
4
5pub mod gbm;
6