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_axis(v)
function set_axis(v)

% set_axis - draw axis on/off
%
%  OFF: set_axis(0);
%  ON:  set_axis(1);
%
%   Copyright (c) 2008 Gabriel Peyre

if v==0
    axis off;
else
    axis on;
end

Contact us at files@mathworks.com