Skip to main content

logspace

Function logspace 

Source
pub fn logspace(start: f64, stop: f64, n: usize) -> Vec<f64>
Expand description

Generate n log-spaced values from 10^start to 10^stop.

Equivalent to numpy.logspace(start, stop, num=n).