[][src]Function fang_oost::get_x_domain

pub fn get_x_domain(
    x_discrete: usize,
    x_min: f64,
    x_max: f64
) -> impl IndexedParallelIterator<Item = f64>

Returns iterator over real (x) domain

Examples

let x_min = -20.0;
let x_max = 25.0;
let x_discrete = 10;
let x_range=fang_oost::get_x_domain(
   x_discrete, x_min, x_max
);