pub fn logspace(
a: Dynamic,
b: Dynamic,
n: INT,
) -> Result<Array, Box<EvalAltResult>>
Expand description
Returns an array containing a number of elements logarithmically spaced between two bounds.
let x = logspace(1, 3, 3);
assert_eq(x, [10.0, 100.0, 1000.0]);