fxgoup.m

来自「FKNN:模糊KNN分类算法」· M 代码 · 共 16 行

M
16
字号
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 + =
减小字号Ctrl + -
显示快捷键?