Skip to content
Snippets Groups Projects
resetAxes.m 196 B
Newer Older
function resetAxes( hPlotAxes )

% Initialise axis limits
% ----------------------
for i = 1 : length( hPlotAxes )
  xlim( hPlotAxes(i), 'auto' );
  ylim( hPlotAxes(i), 'auto' );
end

end