Code covered by the BSD License  

Highlights from
A Numerical Tour of Signal Processing

from A Numerical Tour of Signal Processing by Gabriel Peyre
A set of Matlab experiments that illustrates advanced computational signal and image processing.

set_rand_seeds(a,b)
function set_rand_seeds(a,b)

% set_rand_seeds - initialize rand and randn

if nargin<1
    a = 123456;
end
if nargin<1
    b = 123456;
end
randn('state', a);
rand('state', b);

Contact us at files@mathworks.com