gusucode.com > bigdata 工具箱 matlab源码程序 > bigdata/+matlab/+bigdata/+internal/+adaptors/getAllowedTypes.m

    function t = getAllowedTypes()
%getAllowedTypes Get a list of types allowed to be contained by a tall array.

% Copyright 2016 The MathWorks, Inc.

integerTypeNames = strsplit(strtrim(sprintf('int%d uint%d ', ...
                                            repmat([8, 16, 32, 64], 2, 1))));
t = ['double', 'single', integerTypeNames, 'char', ...
     'logical', 'cell', 'string', ...
     matlab.bigdata.internal.adaptors.getStrongTypes()];
end