runAnalysis.m
上传用户:zfsfly
上传日期:2018-05-24
资源大小:71k
文件大小:3k
源码类别:

matlab例程

开发平台:

Matlab

  1. % The main script for obtaining an analysis from PF simulations
  2. % ------------------------------------------------------------------------------------------------------
  3. % The main script for obtaining an analysis from PF simulations
  4. %
  5. %  J.L. Blanco - University of Malaga, Spain
  6. % ------------------------------------------------------------------------------------------------------
  7. % ------------------------------------------------------------------------------------------------------
  8. % Copyright (c) 2007  Jose Luis Blanco Claraco.
  9. % Permission is hereby granted, free of charge, to any person obtaining a copy of
  10. % this software and associated documentation files (the "Software"), to deal in
  11. % the Software without restriction, including without limitation the rights to
  12. % use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
  13. % of the Software, and to permit persons to whom the Software is furnished to do
  14. % so, subject to the following conditions:
  15. % The above copyright notice and this permission notice shall be included in all
  16. % copies or substantial portions of the Software.
  17. % THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  18. % IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  19. % FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  20. % AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  21. % LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  22. % OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  23. % SOFTWARE.
  24. % ------------------------------------------------------------------------------------------------------
  25. close all;
  26. %clear all;
  27. N_EXPERIMENTS=50;
  28. for RESAMPLE_METHOD=0:3,
  29.     for i=1:N_EXPERIMENTS,
  30.         %if mod(i,5)==0, 
  31.             disp(sprintf('METHOD: %i  ->  Iter #%4i/%4i...',RESAMPLE_METHOD,i,N_EXPERIMENTS)); 
  32.         %end;
  33.         U = runExample(0,RESAMPLE_METHOD);
  34.         eval(sprintf('U_%i(i,:)=U;',RESAMPLE_METHOD));
  35.     end
  36. end
  37. figure(1);
  38. subplot(121);
  39. colores(1)='r';
  40. colores(2)='g';
  41. colores(3)='k';
  42. colores(4)='b';
  43. for RESAMPLE_METHOD=0:3,
  44.     eval(sprintf('loglog(mean(U_%i),''%s'');',RESAMPLE_METHOD,colores(RESAMPLE_METHOD+1)));
  45.     hold on;
  46. end
  47. legend('1: Multinomial','2: Residual','3: Stratified','4: Systematic');
  48. xlabel('Timesteps');
  49. title('Number of hypotheses surviving from t=1');
  50. axis([1 size(U_0,2) 1 max(max(U_0))]);
  51. subplot(122);
  52. bar([ mean(U_0(:)) mean(U_1(:)) mean(U_2(:)) mean(U_3(:))]);
  53. xlabel('Method');
  54. title('Expected number of hypotheses surviving from t=1');