?? contset.m
字號:
function options = contset(options, name, value)
%
% options = CONTSET(options, optname, value)
%
if nargin == 0
allopt = contidx;
[m,n] = size(allopt);
for i=1:m
eval(['options.' allopt(i,:) '= [];']);
end
return;
end
if ~isstr(name)
msg = sprintf('2nd argument must be a string');
error(msg);
end
opt = contidx(name);
if isempty(opt)
msg = sprintf('Unrecognized continuation option ''%s'' ', name);
error(msg);
else
eval(['options.' opt '= value;']);
end
%SD:sets value for option
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -