EXPRSEQ

EXPRSEQ BYREF array, xmin, xmax, count USE expression

Returns an array with ‘count’ elements. Each element has the ‘y’ value of its position as it is returned by the expression.

def f(x) = 2*x

EXPRSEQ v1, 0, 1, 5 USE f(x)
print v1

'same as
v2 = [f(0), f(0.25), f(0.5), f(0.75), f(1)]
print v2
Math
If there is insufficient information on this page and you wish learn more about EXPRSEQ, please send an email to smallbasic@gmail.com. You can help to improve information about EXPRSEQ by submitting a pull request, click View Source for details. Note, an offline language reference text file is also available - see the Download section.