pub fn logspace(start: f64, stop: f64, n: usize) -> Vec<f64>
Generate n log-spaced values from 10^start to 10^stop.
n
10^start
10^stop
Equivalent to numpy.logspace(start, stop, num=n).
numpy.logspace(start, stop, num=n)