> I am trying to do a for loop that increased not by 1.
> i.e.
> for i=0.1 to 1 begin
> end;
> would like to increase I by 0.1.
You can only step by one in EL but it's easy to work around.
for ii = 1 to 10 begin
jj = ii * .1;
{do your calcs using jj rather than ii}
end;
--
Dennis
|