Mercurial > hg > ltpda
view m-toolbox/test/test_abs.m @ 9:fbbfcd56e449 database-connection-manager
Remove dead code
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Mon, 05 Dec 2011 16:20:06 +0100 |
parents | f0afece42f48 |
children |
line wrap: on
line source
% Test abs() operator for AOs. % % M Hewitson 19-04-07 % % $Id: test_abs.m,v 1.10 2009/02/02 15:20:38 hewitson Exp $ % function test_abs() % Make test AOs nsecs = 10; fs = 1000; pl = plist('nsecs', nsecs, 'fs', fs, 'tsfcn', 'randn(size(t))'); a1 = ao(pl); a1.setName('a1'); % Take abs a2 = abs(a1); % Plot iplot(a1, a2, plist('YScales', 'lin')) % Rebuild it a3 = rebuild(a2); end % END