Mercurial > hg > ltpda
diff m-toolbox/test/test_iplot_mixed_yunits.m @ 0:f0afece42f48
Import.
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 23 Nov 2011 19:22:13 +0100 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/m-toolbox/test/test_iplot_mixed_yunits.m Wed Nov 23 19:22:13 2011 +0100 @@ -0,0 +1,36 @@ +clear all; + +%% Test 1 - tsfcn + +a1 = ao(plist('tsfcn', 't', 'yunits', 'm')); +a2 = ao(plist('tsfcn', 't', 'yunits', 'N')); + +iplot(a1,a2) +iplot(a1,a2, plist('arrangement', 'subplots')) + +a3 = ao(plist('tsfcn', 't', 'yunits', 'N m')); +a4 = ao(plist('tsfcn', 't', 'yunits', 'm N')); +iplot(a3,a4) + +%% Test 2 - fsfcn + +f1 = a1.psd +f2 = a2.psd +f3 = a3.psd +f4 = a4.psd + +iplot(f1, f2) +iplot(f1, f2, plist('arrangement', 'subplots')) + +iplot(f3, f4) + +%% Test 3 - y data + +a1 = ao(1:10, plist('yunits', 'm')); +a2 = ao(1:10, plist('yunits', 'N')); +a3 = ao(1:10, plist('yunits', 'm')); + +iplot(a1,a2) +iplot(a1,a2, plist('arrangement', 'subplots')) +iplot(a1,a3) +