www.gusucode.com > trading工具箱matlab源码程序 > trading/trading/fix2table.m

    function fixTable = fix2table(sFIX)
%FIX2TABLE FIX string to MATLAB table.
%   FIXTABLE = FIX2TABLE(SFIX) converts the FIX message string, SFIX, to a
%   MATLAB table, FIXTABLE.
%
%   See also fix2struct, struct2fix, table2fix.

%   Copyright 2016 The MathWorks, Inc.

% Call fix2struct and then convert to table
fixStruct = fix2struct(sFIX);
fixTable = struct2table(fixStruct);