given two series x and y, the program line
Code: Select all
!v=@inner((x(1)-1),((y(1)-1))Why? Is this a bug?1 is not a valid index for vector-series-coefficient Y in "!V2=@INNER((X(1)-1),(Y(1)-2))".
It is clear to me that the following lines work ok
Code: Select all
!v=@inner((x-1),((y-1))
series v=@inner((x(1)-1),((y(1)-1))
Best mamo
Code: Select all
wfcreate a 2000 2015
series x=nrnd
series y=nrnd
'while the following works ....
!v1=@inner((x-1),(y-2))
'...the following two lines create an error!
!v2=@inner((x(0)-1),(y(0)-2))
!v2=@inner((x(1)-1),(y(1)-2))
' but this works...
series v3=@inner((x(0)-1),(y(0)-2))
series v4=@inner((x(1)-1),(y(1)-2))
