image thumbnail
from Monte Carlo simulations using MATLAB by Vincent Leclercq
Demonstrations of Monte Carlo simulations in MATLAB

MainLakeArea.m
%% First Test With Standard uniform law

close all;
rand('seed',0);
TestPolyGon('Standard');

%% Now try with Halton

rand('seed',0);
TestPolyGon('Halton');

%% Finally with Halton

rand('seed',0);
TestPolyGon('Sobol');

Contact us at files@mathworks.com