Mercurial > hg > ltpda
view m-toolbox/classes/+utils/@plottools/restoreDefaultPlotSettings.m @ 1:2014ba5b353a database-connection-manager
Remove old code
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Sat, 03 Dec 2011 18:13:55 +0100 |
parents | f0afece42f48 |
children |
line wrap: on
line source
% RESTOREDEFAULTPLOTSETTINGS Restore the saved plot settings. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % DESCRIPTION: RESTOREDEFAULTPLOTSETTINGS Restore the saved plot settings. % This method will recover the saved plot settings which are % stored in the application data 'defaultPlotSettings'. % % CALL: restoreDefaultPlotSettings() % % VERSION: $Id: restoreDefaultPlotSettings.m,v 1.3 2011/02/10 16:06:51 ingo Exp $ % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% function restoreDefaultPlotSettings() plotSettings = getappdata(0,'defaultPlotSettings'); if ~isempty(plotSettings) settings = fieldnames(plotSettings); for ii = 1:numel(settings); set(0, settings{ii}, plotSettings.(settings{ii})); end else warning('LTPDA:restoreDefaultPlotSettings', '!!! No plot settings are stored'); end end