Addressing arrays and their elements
Posted by Ken Brading on November 16, 2000 9:33 AM
I have three arrays that are each 5 rows X 4 columns,
their names are Select1, Select2, and Select3. Previous
calculations determine which array I am to take
elements from for subsequent calculations. The previous
calcs compute a 1, 2, or 3. I'm trying
to concat Select&i for the array name and having no luck.
Ideally, I would like to reference the three arrays in
a manner similar to Fortran:
Select&i(1,1) through Select&i(5,4)
There are basically two questions here,
1) How can I concat "Select" and a number and have it
be intrepreted as an array name when I copy the
array somewhere else?
2) Is it possible to access elements of an array with
double subscripted variables (something like it)?
thank you,
Ken Brading