pub struct BrownianBridge {
pub alpha: f64,
pub beta: f64,
pub sigma: f64,
pub n_paths: usize,
pub n_steps: usize,
pub t_end: f64,
}Expand description
Brownian Bridge process simulates paths that start and end at fixed points.
Fields§
§alpha: f64§beta: f64§sigma: f64§n_paths: usize§n_steps: usize§t_end: f64Implementations§
Auto Trait Implementations§
impl Freeze for BrownianBridge
impl RefUnwindSafe for BrownianBridge
impl Send for BrownianBridge
impl Sync for BrownianBridge
impl Unpin for BrownianBridge
impl UnwindSafe for BrownianBridge
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more