function poisson_simulation_test ( ) %*****************************************************************************80 % %% POISSON_SIMULATION_TEST tests POISSON_SIMULATION. % % Licensing: % % This code is distributed under the GNU LGPL license. % % Modified: % % 17 September 2012 % % Author: % % John Burkardt % timestamp ( ); fprintf ( 1, '\n' ); fprintf ( 1, 'POISSON_SIMULATION_TEST\n' ); fprintf ( 1, ' MATLAB version.\n' ); fprintf ( 1, ' Test the POISSON_SIMULATION library.\n' ); poisson_simulation_test01 ( ); poisson_simulation_test02 ( ); % % Terminate. % fprintf ( 1, '\n' ); fprintf ( 1, 'POISSON_SIMULATION_TEST\n' ); fprintf ( 1, ' Normal end of execution.\n' ); fprintf ( 1, '\n' ); timestamp ( ); return end