Am 23.11.2010 17:52, schrieb Bob McCall:
> I have a time series dataset and want to access a variable as a
> subscripted array. Then I could do something like;
>  
> loop for i=1 .. 5
> print v1[i]
> endloop
>  

I think the following should work (no guarantees though):

loop i=1..5
printf "%f\n", v1[i]
endloop

hth,
sven

Reply via email to