iter_num_tools is a collection if iterator extensions that make heavy use of number properties. Mostly extending on Range. The most useful features are making range iterators over floats.
LinSpace
LinSpace is an iterator over a range with a fixed number of values all evenly spaced.
use lin_space;
// Count from 1.0 up to and including 5.0, with 5 numbers counted in total
let it = lin_space;
assert!;
// Count from 0.0 up to and excluding 5.0, with 5 numbers counted in total
let it = lin_space;
assert!;
GridSpace
GridSpace extends on LinSpace, up to 4 dimensions.
use grid_space;
// count in 2 dimensions (excluding end points),
// from 0.0 up to 1.0 in the x direction with 2 even steps,
// and 0.0 up to 2.0 in the y direction with 4 even steps
let it = grid_space;
assert!;
// count in 2 dimensions (including end points),
// from 0.0 up to 1.0 in the x direction,
// and 0.0 up to 2.0 in the y direction with 3 even steps in all directions
let it = grid_space;
assert!;
Arange
Arange is similar to LinSpace, but instead of a fixed amount or steps, it steps but a fixed amount.
use arange;
let it = arange;
assert!;
Note, there is no inclusive version of arange
ArangeGrid
ArangeGrid is the same as GridSpace but for Arange instead of LinSpace.
use arange_grid;
use Itertools;
// count in 2 dimensions,
// from 0.0 up to 1.0 in the x direction,
// and 0.0 up to 2.0 in the y direction,
// stepping by 0.5 each time
let it = arange_grid;
assert!;
// count in 2 dimensions,
// from 0.0 up to 1.0 in the x direction stepping by 0.5 each time,
// and 0.0 up to 2.0 in the y direction stepping by 1.0 each time
let it = arange_grid;
assert!;
LogSpace
LogSpace is similar to LinSpace, but instead of evenly spaced linear steps, it has evenly spaced logarithmic steps.
use log_space;
use zip_eq;
// From 1.0 up to and including 1000.0, taking 4 logarithmic steps
let it = log_space;
let expected: = vec!;
assert!;
// From 1.0 up to 1000.0, taking 3 logarithmic steps
let it = log_space;
let expected: = vec!;
assert!;