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