[][src]Function fang_oost::get_u_domain

pub fn get_u_domain(
    u_discrete: usize,
    x_min: f64,
    x_max: f64
) -> impl IndexedParallelIterator<Item = Complex<f64>>

Helper function to get complex u domain

Examples

let u_discrete = 10;
let x_min = -20.0;
let x_max = 20.0;
let u_domain=fang_oost::get_u_domain(
    u_discrete,
    x_min,
    x_max
);