📄 stbgeneratedoc.m
字号:
% STBgenerateDoc - generates html documentation.% This is a wrapper for the m2html program with settings% that work for the SaliencyToolbox. You must have m2html% in the executable path, and you must change to the % SaliencyToolbox directory before excuting this function.%% For m2html see: http://www.artefact.tk/software/matlab/m2html/% This file is part of the SaliencyToolbox - Copyright (C) 2006-2007% by Dirk B. Walther and the California Institute of Technology.% See the enclosed LICENSE.txt document for the license agreement. % More information about this project is available at: % http://www.saliencytoolbox.netfunction STBgenerateDocdeclareGlobal;if (~ismember(basename(pwd),{'SaliencyToolbox','trunk'})) fprintf(['Please change to the SaliencyToolbox base directory and run ' ... mfilename ' again.\n']); return;endhtmlDir = ['./doc' PD 'mdoc'];m2html('mfiles','./mfiles/','htmldir',htmlDir,'recursive','off',... 'globalHypertextLinks','on','global','on');
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -