📄 fxgoup.m
字号:
function fxgoup(currentfileName)
%FXGOUP Go one level up and open fxdownloads index page.
% Copyright 1984-2006 The MathWorks, Inc.
% Author : Santosh Kasula
newfilePath = fileparts(currentfileName);
for counter = 1:3
newfilePath = fileparts(newfilePath);
indexFilename = dir(fullfile(newfilePath,'downloads_index.html'));
if ~isempty(indexFilename)
web(fullfile(newfilePath,indexFilename.name));
break;
end
end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -