www.gusucode.com > econ 案例源码程序 matlab代码 > econ/ConvertLagOperatorToACellArrayExample.m

    %% Convert Lag Operator to a Cell Array
%%
% Create a |LagOp| polynomial and convert it to a cell array:

% Copyright 2015 The MathWorks, Inc.

A = LagOp({0.8 1 0 .6});
B = toCellArray(A);
class(B)