Function tool::core::matrix::linspace [−][src]
pub fn linspace<T>(start: f64, end: f64, step: f64) -> Matrix1xX<T> where
T: RealField,
Create a vector from start
to end
with step
. The last step might be smaller
than step
just to include end
in the vector.