ensure_AR.m
上传用户:mozhenmi
上传日期:2008-02-18
资源大小:13k
文件大小:0k
源码类别:

其他小程序

开发平台:

Matlab

  1. function [A, C, Q, R, initx, initV] = ensure_AR(A, C, Q, R, initx, initV, k, obs, diagonal)
  2. %
  3. % Ensure that the system matrices have the right form for an autoregressive process.
  4. ss = length(A);
  5. if nargin<8, obs=ones(ss, 1); end
  6. if nargin<9, diagonal=0; end
  7. [coef, C] = SS_to_AR(A, Q, k, diagonal);
  8. [A, C, Q, R, initx, initV] = AR_to_SS(coef, C, obs);