Returns evenly spaced values within given interval.
This is part of package extra-array.
This is browserified, minified version of @extra-array/linspace.
It is exported as global variable array_linspace.
CDN: unpkg, jsDelivr.
array;// v: start of interval// V: end of interval// n: no. of values in between (100)
const array = ; array;// [0, 0.5, 1] array;// [0, -0.25, -0.5, -0.75, -1] array;// [0, ..., 1] (100 values)