Am 10/03/2011 04:47 PM, schrieb artur bala:
Hi,
Is it possible to make a backward loop work ? I mean :loop i = 1..$nobs
well this doesn't look backward to me !?
apart from that,
loop for (i=$nobs;i>0;i--)
or something like that (check the manual, I'm not using that syntax too
often)
I'm going through a matrix hunting for a particular value that I
know
should be somewhere "at the bottom" of the matrix
if you know the region, just search in that region
loop i=lowerbound..$nobs
if you don't exactly know where that region starts, you have to search
everywhere it seems
-sven