www.gusucode.com > signal 案例源码程序 matlab代码 > signal/SecondOrderSectionsFromCellArrayInputExample.m

    %% Second-Order Sections from Cell Array Input
% Generate a cell array of 1-by-2 cell arrays of 1-by-3 row vectors.
% Convert it to a matrix of second-order sections.
%%

% Copyright 2015 The MathWorks, Inc.

cll = {{[3 6 7] [1 1 2]} 
       {[1 4 5] [1 9 3]}
       {[2 7 1] [1 7 8]}};
sos = cell2sos(cll)