⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 display.m

📁 这是一个关于MATLAB的函数
💻 M
字号:
function dummy = display(cc)
%DISPLAY Display a Code Composer Studio(tm) IDE object.
%   DISPLAY(CC) displays information about the CC object. 

% Copyright 2001-2002 The MathWorks, Inc.
% $Revision: 1.10 $ $Date: 2002/06/12 15:30:43 $

% Suppress 'ans' display (UDD limitation, for now)
if 0,
    name = inputname(1);
    if isempty(name)
        name = 'ans';
    end
end

isloose = strcmp(get(0,'FormatSpacing'),'loose');
if isloose,
   newline=sprintf('\n');
else
   newline=sprintf('');
end

% fprintf(newline);
% disp([name, ' = ']);
fprintf(newline);
disp(cc);
fprintf(newline)

% [EOF] display.m

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -