资源简介
用于模式识别和预测的HMM模型代码,matlab工具箱,应用实例及说明
代码片段和文件信息
function p = genpathPMTK(d isMatlab)
% Like built-in genpath but omits directories unwanted directories:
% e.g. .svn cvs private deprecated +package
% For best performance optionally specify whether this is Matlab (as
% opposed to Octave).
%%
% This file is from pmtk3.googlecode.com
if nargin==0
p = genpath(fullfile(matlabroot ‘toolbox‘));
if length(p) > 1
p(end) = [];
end % Remove trailing pathsep
return
end
if nargin > 1 && ~isMatlab %isempty(strfind(upper(matlabroot) ‘MATLAB‘)) % octave
p = genpath(d); % genpathPMTK is not reliable in Octave
return;
end
% initialise variables
methodsep = ‘@‘; % qualifier for overloaded method directories
p = ‘‘; % path to be returned
% Generate path based on given root directory
files = dir(d);
if isempty(files)
return
end
% Add d to the path even if it is empty.
p = [p d pathsep];
% set logical vector for subdirectory entries in d
isdir = logical(cat(1 files.isdir));
%
% Recursively descend through directories which are neither
% private nor “class“ directories.
%
dirs = files(isdir); % select only directory entries from the current listing
for i=1:length(dirs)
dirname = dirs(i).name;
if ~strcmp( dirname ‘.‘) && ...
~strcmp( dirname ‘..‘) && ...
~strncmp( dirname methodsep 1) && ...
~strcmp( dirname ‘private‘) && ...
~strcmp( dirname ‘deprecated‘) && ...
~strcmp( dirname ‘.svn‘) && ...
~strcmp( dirname ‘CVS‘) && ...
~strncmp( dirname ‘+‘ 1)
p = [p genpathPMTK(fullfile(d dirname))]; %#ok recursive calling of this function.
end
end
end
% function p = genpathOctave(d)
% %% Prototoype version that may not work reliably
%
% fullp = genpath(d);
%
% [start finish] = regexp(fullp pathsep);
% if isempty(start)
% tokens = {fullp};
% else
% tokens = cell(numel(start+1) 1);
% tokens{1} = fullp(1:start(1)-1);
% start = [start length(fullp)+1];
% for i=1:numel(finish)
% tokens{i+1} = fullp(finish(i)+1:start(i+1)-1);
% end
% end
% tokens(cellfun(@(c)isempty(c) tokens)) = [];
% ndx = cellfun(@(c)~isempty(c) strfind(tokens ‘.svn‘));
% tokens(ndx) = [];
% tokens = cellfun(@(t)[t pathsep] tokens ‘uniformoutput‘ false);
% p = [tokens{:}];
% if isempty(p)
% p = ‘‘;
% end
%
% end
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2013-10-17 13:50 hmmtoolbox\
文件 818349 2013-08-27 10:40 hmmtoolbox\hmm-matlab (1).zip
目录 0 2013-10-17 13:51 hmmtoolbox\pmtk3-3jan11\
文件 403 2013-06-21 15:51 hmmtoolbox\pmtk3-3jan11\Unti
文件 194 2012-01-03 21:50 hmmtoolbox\pmtk3-3jan11\config-local.txt
文件 735 2011-02-09 17:12 hmmtoolbox\pmtk3-3jan11\config-old.txt
文件 973 2012-01-03 21:50 hmmtoolbox\pmtk3-3jan11\config.txt
目录 0 2013-10-17 13:50 hmmtoolbox\pmtk3-3jan11\demos\
文件 962 2011-02-27 14:31 hmmtoolbox\pmtk3-3jan11\demos\IPFdemo2x2.m
文件 1116 2011-02-27 14:31 hmmtoolbox\pmtk3-3jan11\demos\IPFdemo4Cycle.m
文件 595 2011-02-27 14:31 hmmtoolbox\pmtk3-3jan11\demos\IPFdemoIndep2d.m
文件 1410 2011-02-27 14:31 hmmtoolbox\pmtk3-3jan11\demos\KLfwdReverseMixGauss.m
文件 642 2011-02-28 14:50 hmmtoolbox\pmtk3-3jan11\demos\KLpqGauss.m
文件 1354 2011-02-27 14:31 hmmtoolbox\pmtk3-3jan11\demos\LMSdemo.m
文件 937 2011-02-27 14:31 hmmtoolbox\pmtk3-3jan11\demos\LMSdemoSimple.m
文件 1200 2011-12-15 09:13 hmmtoolbox\pmtk3-3jan11\demos\NIXdemo2.m
文件 925 2011-12-15 09:13 hmmtoolbox\pmtk3-3jan11\demos\PRhand.m
文件 1568 2011-02-27 14:31 hmmtoolbox\pmtk3-3jan11\demos\ROChand.m
文件 807 2011-02-27 14:31 hmmtoolbox\pmtk3-3jan11\demos\agglomDemo.m
文件 1330 2011-02-27 14:31 hmmtoolbox\pmtk3-3jan11\demos\alarmBelPropDemo.m
文件 2276 2011-02-27 14:31 hmmtoolbox\pmtk3-3jan11\demos\alarmDgmTimingComparison.m
文件 537 2011-02-27 14:31 hmmtoolbox\pmtk3-3jan11\demos\alarmNetworkFitTest.m
文件 1041 2011-02-27 14:31 hmmtoolbox\pmtk3-3jan11\demos\alarmTest.m
文件 1096 2011-04-02 16:39 hmmtoolbox\pmtk3-3jan11\demos\anscombe.m
文件 3017 2011-02-27 14:31 hmmtoolbox\pmtk3-3jan11\demos\arsDemo.m
文件 1269 2011-12-15 09:13 hmmtoolbox\pmtk3-3jan11\demos\arsEnvelope.m
文件 743 2011-12-15 09:13 hmmtoolbox\pmtk3-3jan11\demos\bayesChangeOfVar.m
文件 891 2011-04-02 16:39 hmmtoolbox\pmtk3-3jan11\demos\bayesFactorHandedness.m
文件 5058 2011-12-15 09:13 hmmtoolbox\pmtk3-3jan11\demos\bayesLinRegDemo2d.m
文件 6884 2011-02-27 14:31 hmmtoolbox\pmtk3-3jan11\demos\bayesRiskDemo.m
文件 698 2011-02-27 14:31 hmmtoolbox\pmtk3-3jan11\demos\bayesTtestDemo.m
............此处省略3874个文件信息
相关资源
- simmechanics学习教程——matlab2015a
- 关于matlab数字图像处理的知网论文
- matlab 图像处理代码
- 合成孔径雷达成像算法与实现.zip+ma
- 数字图像处理MATLAB版英文版冈萨雷斯
- 图像分割的matlab算法
- Matlab基于贝叶斯,朴素贝叶斯,最小
- 数字图像处理高级应用 基于MATLAB与
- 图像配准技术及其MATLAB编程实现(书
- Synthetic Aperture Radar Signal Processing wit
- 模糊控制及MATLAB仿真.pdf
- 完整版MATLAB GUI设计学习手记第二版
- GPU与MATLAB混合编程 PDF
- MATLAB图像滤波去噪分析及其应用电子
- 《 MATLAB语言常用算法程序集第2版》所
- 统计信号处理基础之实用算法开发(
- MATLAB 7基础教程 面向工程应用.pdf
- MATLAB神经网络43个案例分析源码
- 系统辨识理论及MATLAB仿真 刘金琨 2/
- 基于稀疏表示的人脸识别Matlab程序
- MATLAB遗传算法工具箱及应用(超清晰
- 数字图像处理及MATLAB实现 pdf电子书
- matlab_mobilenet_yolov3.rar
- 元胞自动机matlab程序代码
- 精通图像处理经典算法MATLAB版 (代码
- 强大的MATLAB机器人工具箱Matlab_Roboti
- MATLAB神经网络30个案例分析165538
- matlab R2007基础与提高--常巍--2007
- MATLAB神经网络30个案例分析 完整版p
- MATLAB 7.0从入门到精通.PDF
评论
共有 条评论