view m-toolbox/test/test_ao_tsfcn.m @ 38:3aef676a1b20
database-connection-manager
Keep backtrace on error
author |
Daniele Nicolodi <nicolodi@science.unitn.it> |
date |
Mon, 05 Dec 2011 16:20:06 +0100 (2011-12-05) |
parents |
f0afece42f48 |
children |
|
line source
% Test AO constructor for TS function
%
% M Hewitson 02-04-07
%
% $Id: test_ao_tsfcn.m,v 1.8 2009/02/02 15:20:38 hewitson Exp $
%
function test_ao_tsfcn()
pl = plist('nsecs', 10, 'fs', 100, 'tsfcn', 'sin(2*pi*2.4*t).*exp(-t.^.5/2)');
a = ao(pl);
iplot(a);
end
% END