old version CROSS
-
ivory4
- Posts: 144
- Joined: Mon Aug 24, 2009 12:16 pm
old version CROSS
I read some old code using cross() series1 series2 -nstep nstep var3
I did not see declaration of nstep, so is it an old version?
In the manual it says there was ones but did not specify.
nstep=min(T/4,2sq(T))?
Thanks
I did not see declaration of nstep, so is it an old version?
In the manual it says there was ones but did not specify.
nstep=min(T/4,2sq(T))?
Thanks
-
TomDoan
- Posts: 7825
- Joined: Wed Nov 01, 2006 4:36 pm
Re: old version CROSS
The new way to do that is:ivory4 wrote:I read some old code using cross() series1 series2 -nstep nstep var3
I did not see declaration of nstep, so is it an old version?
In the manual it says there was ones but did not specify.
nstep=min(T/4,2sq(T))?
Thanks
cross(from=-nstep,to=nstep,results=var3) series1 series2
-
ivory4
- Posts: 144
- Joined: Mon Aug 24, 2009 12:16 pm
Re: old version CROSS
nstep is still reserved name here right?
-
TomDoan
- Posts: 7825
- Joined: Wed Nov 01, 2006 4:36 pm
Re: old version CROSS
No. If you leave off the FROM and TO, you get from -min(2sqrt(N),N/4) to +min(2sqrt(N),N/4)