pub fn manifold_simulate<M, D, G>(
sde: &ManifoldSDE<M, D, G>,
scheme: &GeodesicEuler,
x0: M::Point,
t0: f64,
t1: f64,
n_paths: usize,
n_steps: usize,
seed: u64,
) -> Vec<Vec<M::Point>>Expand description
Simulate manifold SDE paths using GeodesicEuler.
Returns Vec<Vec<M::Point>> with outer index = path, inner index = time step.
Each inner vec has n_steps + 1 points (including the initial condition x0).