⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 plot_dis_symb.m

📁 一个隐马尔可夫模型工具箱一个隐马尔可夫模型工具箱一个隐马尔可夫模型工具箱
💻 M
字号:
% This function was created to plot the distribution of synbols for a discrete HMM
% In particular, we use the handler of the figure where we want to plot it.

function plot_dis_symb(class,group,parameter,number)

load hmmpoligonos
 
 for state=1:10
     prob=B{class,group}{parameter}(state,:);
 if (state<6)
     figure(3)
 subplot(2,5,state+5);
 plot(prob);
 axis([1 length(prob) 0 max(prob)]);
 title(['symbol prob.']);
else 
    figure(4);
 subplot(2,5,state);
 plot(prob);
  axis([1 length(prob) 0 max(prob)]);
  title(['symbol prob.']);
end
end

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -