Mercurial > hg > ltpda
comparison m-toolbox/test/test_LTPDAprefs_cl_set.m @ 0:f0afece42f48
Import.
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 23 Nov 2011 19:22:13 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:f0afece42f48 |
---|---|
1 % Check that direct setting of LTPDA preferences is working. | |
2 % | |
3 % M Hewitson | |
4 % | |
5 % $Id: test_LTPDAprefs_cl_set.m,v 1.1 2010/08/31 08:25:28 hewitson Exp $ | |
6 % | |
7 function test_LTPDAprefs_cl_set | |
8 | |
9 % Display | |
10 LTPDAprefs('Display', 'verboseLevel', LTPDAprefs.verboseLevel) | |
11 LTPDAprefs('Display', 'wrapstrings', LTPDAprefs.wrapStrings) | |
12 | |
13 % plot | |
14 LTPDAprefs('plot', 'axesFontSize', LTPDAprefs.axesFontSize); | |
15 LTPDAprefs('plot', 'axesFontWeight', LTPDAprefs.axesFontWeight); | |
16 LTPDAprefs('plot', 'axesLineWidth', LTPDAprefs.axesLineWidth); | |
17 LTPDAprefs('plot', 'lineLineWidth', LTPDAprefs.lineLineWidth); | |
18 LTPDAprefs('plot', 'lineMarkerSize', LTPDAprefs.lineMarkerSize); | |
19 LTPDAprefs('plot', 'gridStyle', LTPDAprefs.gridStyle); | |
20 LTPDAprefs('plot', 'minorGridStyle', LTPDAprefs.minorGridStyle); | |
21 | |
22 % time | |
23 LTPDAprefs('time', 'timezone', LTPDAprefs.timezone); | |
24 LTPDAprefs('time', 'timeformat', LTPDAprefs.timeformat); | |
25 | |
26 % misc | |
27 LTPDAprefs('misc', 'default_window', LTPDAprefs.default_window); | |
28 | |
29 | |
30 end |