DADiSP Worksheet Functions > Function Categories > Generated Series > LOGSPACE
Creates a series of N log spaced values from 10lo to 10hi inclusive.
LOGSPACE(lo, hi, n)
lo |
- |
Optional. A real, the start range. Defaults to 0.0. |
hi |
- |
Optional. A real, the end range. Defaults to 3.0. |
n |
- |
Optional. An integer, the number of samples. Defaults to 100. |
A series of N logarithmically spaced values.
logspace(1, 5, 5)
returns {10, 100, 1000, 10000, 100000}
logspace(0, 5, 5)
returns {1, 17.783, 316.228, 5623.413, 100000}
The DELTAX values of the resulting series is (10^hi - 10^lo)/(n-1) and the XOFFSET is set to 10^lo.