📄 copy_rnumeric.m
字号:
function dummy = copy_rnumeric(rn,resp)
% Private. Copies over RN properties to RESP.
% Copyright 2002 The MathWorks, Inc.
% $Revision: 1.4 $ $Date: 2002/03/27 21:10:05 $
% public properties
resp.name = rn.name;
resp.wordsize = rn.wordsize;
resp.storageunitspervalue = rn.storageunitspervalue;
resp.size = rn.size;
resp.endianness = rn.endianness;
resp.arrayorder = rn.arrayorder;
resp.prepad = rn.prepad;
resp.postpad = rn.postpad;
resp.represent = rn.represent;
resp.binarypt = rn.binarypt;
% private properties
% -none-
% [EOF] copy_rnumeric.m
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -