📄 stprpath.m
字号:
function stprpath(toolboxroot)
% STPRPATH sets path to Statistical Pattern Recognition Toolbox.
%
% Synopsis:
% stprpath
% stprpath(toolboxroot)
%
% Description:
% stprpath(toolboxroot) sets path to the toolbox stored in
% given root directory toolboxroot.
%
% stprpath takes the working directory as the root, i.e.,
% toolboxroot=pwd.
%
% (c) Statistical Pattern Recognition Toolbox, (C) 1999-2003,
% Written by Vojtech Franc and Vaclav Hlavac,
% <a href="http://www.cvut.cz">Czech Technical University Prague</a>,
% <a href="http://www.feld.cvut.cz">Faculty of Electrical engineering</a>,
% <a href="http://cmp.felk.cvut.cz">Center for Machine Perception</a>
% Modifications:
% 28-apr-2004, VF, renamed to stprpath
% 22-oct-2003, FV, command addpath used.
% 18-July-2003, VF
% 9-Feb-2003, VF
% 23-Jan-2003, VF
% 7-jan-2003, VF, A new coat.
% 23-mar-2001, V.Franc, added new directories
if nargin < 1
toolboxroot=pwd; % get current directory
end
disp('----已经为程序运行设置了(此文件夹内相关程序的)搜索路径----!.');
% path for UNIX
p = ['$:',...
'$data:',...
'$visual:',...
'$GUI_Designs:',...
'$kernels:',...
'$function:',...
];
p=translate(p,toolboxroot);
% adds path at the start
addpath(p);
%--translate ---------------------------------------------------------
function p = translate(p,toolboxroot);
%TRANSLATE Translate unix path to platform specific path
% TRANSLATE fixes up the path so that it's valid on non-UNIX platforms
%
% This function was derived from MathWork M-file "pathdef.m"
cname = computer;
% Look for VMS, this covers VAX_VMSxx as well as AXP_VMSxx.
%if (length (cname) >= 7) & strcmp(cname(4:7),'_VMS')
% p = strrep(p,'/','.');
% p = strrep(p,':','],');
% p = strrep(p,'$toolbox.','toolbox:[');
% p = strrep(p,'$','matlab:[');
% p = [p ']']; % Append a final ']'
% Look for PC
if strncmp(cname,'PC',2)
p = strrep(p,'/','\');
p = strrep(p,':',';');
p = strrep(p,'$',[toolboxroot '\']);
% Look for MAC
elseif strncmp(cname,'MAC',3)
p = strrep(p,':',':;');
p = strrep(p,'/',':');
m = toolboxroot;
if m(end) ~= ':'
p = strrep(p,'$',[toolboxroot ':']);
else
p = strrep(p,'$',toolboxroot);
end
else
p = strrep(p,'$',[toolboxroot '/']);
end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -