I want to populate in array in chsell such that each index in the array will be an array itself. That is, if I ran
set a = ( `seq 1 2 10` )
set b = ( `seq 2 2 10` )
set array = ( $a $b )
echo $array[2]
then the return would be 2 4 6 8 10 (which is $b) instead of 3 (which is $a[2]).
Ultimately I could get away with declaring a bunch of variables, but it will make my code a mess. This would be similar to a cell in Matlab if that helps clarify the end result. Is there anyway to do this?