I want to fill a vector with number of the last observation of timeseries
I'm doing :
Code: Select all
vector(2) myVector
myVector.fill @ilast(myTs1), @ilast(myTs2)
Doing :
Code: Select all
vector(2) myVector
!nb1 = @ilast(myTs1)
!nb2 = @ilast(myTs2)
myVector.fill !nb1, !nb2
