blanks.m
来自「matpower软件下」· M 代码 · 共 14 行
M
14 行
function b = blanks(n)
%BLANKS String of blanks.
% BLANKS(n) is a string of n blanks.
% Use with DISP, eg. DISP(['xxx' BLANKS(20) 'yyy']).
% DISP(BLANKS(n)') moves the cursor down n lines.
%
% See also CLC, HOME, FORMAT.
% Copyright 1984-2002 The MathWorks, Inc.
% $Revision: 5.10 $ $Date: 2002/04/15 03:53:35 $
space = ' ';
b = space(ones(1,n));
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?