To go back to the previous page : Clic here.
%% Noisy parameters
% This function provides parameters for all the cells, with some noise
% added to each of them.
function b=noise(B)
sigma = 0.1;
b=abs((1-sigma)*B+ (2*sigma*B)*rand);