in p481 of "EViews 8 Object Ref.pdf" , to access the j-th observation of the series, using @elem(ser,j)
Code: Select all
pagecreate(page=ar1) u 4
rndseed(type=mt) 12347
genr e = 0.6*nrnd 'sig=0.6
'c(1) = @elem(e,1) 'error
c(2) = @elem(e,"2")
c(3) = @elem(e,@str(3))
c(4) = @elem(e,@otod(4))
