pub fn linspace(start: f64, stop: f64, n: usize) -> Vec<f64>
Generate n equally-spaced values from start to stop (inclusive).
n
start
stop
Equivalent to numpy.linspace(start, stop, num=n).
numpy.linspace(start, stop, num=n)