btpoole
11 years agoChannel Surfer
Array Range
Is there any way to extract a set number of values stored in an array. For example in the the array myarray I only want the first 10 entries in the array. Thanks
first_ten = []
for i = 0 to 9
first_ten.Push(my_array[i])
end for