|
From: | Kai Torben Ohlhus |
Subject: | Re: Avoid loop |
Date: | Tue, 5 Feb 2019 14:55:19 +0100 |
hi,
look this piece of code :
for gg=rowss:roww
v1=E(gg,Col)>maxRel;
maxRel=max(E(gg,Col),maxRel);
minRel=!v1.*minRel+v1*9999999999999999999999;
minRel=min(E(gg,Col),minRel);
diff=maxRel-minRel;
rangeRel=max(diff,rangeRel);
endfor
it's possible to avoid loop? (i'm refer to : for gg=rowss:roww)
[Prev in Thread] | Current Thread | [Next in Thread] |