|
> From: aldi [mailto:aldi@WUBIOS.WUSTL.EDU]
> Is there any special way to find out where the subscript in
> an array is reaching out of bound? How can I make SAS to tell
> me which array?
> I have a group of arrays and after I have checked all the
> loops I think the indices are set up correct.
> But still SAS is saying:
> ERROR: Array subscript out of range at line 6691 column 190
well, that's what line numbers are for!
generally this error message means that you're still in the loop
and have gone past the upper bound.
check the array reference in column 190 of line 6691
> do j=1 to &nphenos;
> do kk=1 to &nloci;
you will have declared any of the following arrays
with the index J
as
array ABC (&nphenos) ...?
array DEF (&nloci) ...?
right?
Ron Fehd the macro maven CDC Atlanta GA USA RJF2@cdc.gov
remember perspective: the error is not always where it seems to occur!
-- RJF2
|