📄 copy.m
字号:
function resp = copy(st)
% COPY Creates a copy of a STRUCTURE object.
% O = COPY(ST) returns a copy of the STRUCTURE object ST.
%
% See also STRUCTURE.
% Copyright 2002 The MathWorks, Inc.
nargchk(1,1,nargin);
if ~ishandle(st),
error('First Parameter must be a STRUCTURE Handle.');
end
resp = ccs.structure;
copy_structure(st,resp);
% [EOF] copy.m
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -