?? copy.m
字號:
function resp = copy(nn)
% COPY Creates a copy of a POINTER object.
% O = COPY(PP) returns a copy of the POINTER object PP.
%
% See also POINTER.
% Copyright 2002 The MathWorks, Inc.
% $Revision: 1.2 $ $Date: 2002/03/27 21:10:00 $
nargchk(1,1,nargin);
if ~ishandle(nn),
error('First Parameter must be a POINTER Handle.');
end
resp = ccs.pointer;
copy_memoryobj(nn,resp);
copy_numeric(nn,resp);
copy_pointer(nn,resp);
% [EOF] copy.m
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -