view m-toolbox/test/test_LTPDAprefs_cl_set.m @ 20:d58813ab1b92
database-connection-manager
Update ltpda_uo.submit
author |
Daniele Nicolodi <nicolodi@science.unitn.it> |
date |
Mon, 05 Dec 2011 16:20:06 +0100 (2011-12-05) |
parents |
f0afece42f48 |
children |
|
line source
% Check that direct setting of LTPDA preferences is working.
%
% M Hewitson
%
% $Id: test_LTPDAprefs_cl_set.m,v 1.1 2010/08/31 08:25:28 hewitson Exp $
%
function test_LTPDAprefs_cl_set
% Display
LTPDAprefs('Display', 'verboseLevel', LTPDAprefs.verboseLevel)
LTPDAprefs('Display', 'wrapstrings', LTPDAprefs.wrapStrings)
% plot
LTPDAprefs('plot', 'axesFontSize', LTPDAprefs.axesFontSize);
LTPDAprefs('plot', 'axesFontWeight', LTPDAprefs.axesFontWeight);
LTPDAprefs('plot', 'axesLineWidth', LTPDAprefs.axesLineWidth);
LTPDAprefs('plot', 'lineLineWidth', LTPDAprefs.lineLineWidth);
LTPDAprefs('plot', 'lineMarkerSize', LTPDAprefs.lineMarkerSize);
LTPDAprefs('plot', 'gridStyle', LTPDAprefs.gridStyle);
LTPDAprefs('plot', 'minorGridStyle', LTPDAprefs.minorGridStyle);
% time
LTPDAprefs('time', 'timezone', LTPDAprefs.timezone);
LTPDAprefs('time', 'timeformat', LTPDAprefs.timeformat);
% misc
LTPDAprefs('misc', 'default_window', LTPDAprefs.default_window);
end