www.gusucode.com > bigdata 工具箱 matlab源码程序 > bigdata/+matlab/+bigdata/+internal/+util/private/getTimesCharacter.m

    function c = getTimesCharacter()
%getTimesCharacter get appropriate "times" character.
%   For use when formatting sizes - returns char(215) normally, and
%   'x' in deployed mode.

% Copyright 2016 The MathWorks, Inc.

if isdeployed()
    c = 'x';
else
    c = char(215);
end
end