CREATE_ARRAY

The CREATE_ARRAY(REAL, REAL, REAL) function returns the real array.

Format

CREATE_ARRAY(start, step, end)

Arguments

 
start
First element of array.
step
Step to create subsequent array elements
end
End value

Examples

CREATE_ARRAY(0.0, 5.0, 25.0)
This function builder function will create array on fly with array values (0.0, 5.0, 10.0, 15.0, 20.0, 25.0).