Generate an array of logarithmically spaced numbers.
The initial magnitude of the space
The final magnitude of the space
The number of values in the space
The logarithmic space as an array of numbers
const space = SMath.logspace(0, 2, 5);// [ 1, 3.2, 10, 31.6, 100 ] Copy
const space = SMath.logspace(0, 2, 5);// [ 1, 3.2, 10, 31.6, 100 ]
Generate an array of logarithmically spaced numbers.