std-rseq | ![]() |
STD-RSEQ
creates an ascending real sequence of n numbers including the start and end element. The first element is start, the last end, the in between elements are equally divided.
(std-rseq 0 1 3) => (0.0 0.5 1.0)
start, end: Numbers. end must be greater than start.
n: Positive integer number
A list of real numbers or nil if start > end or n<1
None.
(std-require 'STDLIST)
Defined in STDLIST