?? gahelpviewer.m
字號:
function gahelpviewer(topic, errorname)
% GAHELPVIEWER is a helper file for the Genetic Algorithm and Direct Search Toolbox.
% GAHELPVIEWER Displays help for a Genetic Algorithm and Direct Search TOPIC.
% If the map file cannot be found, an error is displayed using ERRORNAME
% Copyright 2004 The MathWorks, Inc.
% $Revision: 1.1 $
import java.io.*;
error = false;
mapfilename = [docroot '/toolbox/gads/gads.map'];
f = File(mapfilename);
if f.exists
try
helpview(mapfilename, topic);
catch
error = true;
end
else
error = true;
end
if error
message = sprintf('Unable to display help for %s\n', ...
errorname);
errordlg(message);
end
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -