Name
ts2tsmat — Converts time sries into a tsmat
CALLING SEQUENCE
tsm=ts2tsmat(arg1,
,argn)
PARAMETERS
- Input
argi = time series, the string 'cte' or 'const' vectors or matrices that have the same # of rows, itself equal to the # of time periods matched by the ts
- Output
tsm = a tlist of type tsmat
DESCRIPTION
Converts n time series into a tsmat
EXAMPLE
ts1=reshape([1:10],'1a');
ts2=reshape(2*[1:10],'1a');
tsmat1=ts2tsmat('ts1','ts2');