range: allocate an array with a subrange of another objarray
set obj2 [objarray range <obj> <index_start> <index_end>]
e.g.
set obj [objarray new_from_to intarray 1 5] -> 1 2 3 4 5 set obj2 [objarray range $obj 1 end-2] -> 2 3
GiD - The personal pre and post processor
range: allocate an array with a subrange of another objarray
set obj2 [objarray range <obj> <index_start> <index_end>]
e.g.
set obj [objarray new_from_to intarray 1 5] -> 1 2 3 4 5 set obj2 [objarray range $obj 1 end-2] -> 2 3