0001 function MakeFigure5
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014 h=clf;
0015 set(h,'name','C-POMDP Figure 5','numbertitle','off');
0016
0017 fprintf('Loading/Generating the simulation results\n');
0018 fname='Results/Test1-Figure5.mat';
0019 GenData=@()(GenerateFigure5Data(fname));
0020 Results=GetData(fname,GenData);
0021
0022 subplot(1,2,1);
0023 bar(Results.cb,Results.tb);
0024
0025 title('1st Iteration Exec. Time');
0026 xlabel('No. Components Beliefs');
0027 ylabel('t (s)');
0028
0029 subplot(1,2,2);
0030 bar(Results.ca,Results.ta);
0031 xlabel('No. Components \alpha-functions');
0032 ylabel('time (s)');