Response to LabTalk LimitDear Eberhard,
I made a few small changes to your script and it worked well for me. Thanks
for a nice little script...the only critical addition was that pesky ; after
the first line!
nycols=%(%H,@Y#,1);
for(i=2;i<=(nycols+1);i++) {
Limit col($(i));
col($(i))/=limit.yMax;
};
This variation also works quite nicely as the previous responder indicated.
nycols=%(%H,@Y#,1);
for(i=2;i<=(nycols+1);i++) {
sum(col($(i)));
col($(i))/=sum.max;
};