view m-toolbox/test/test_ao_tsfcn.m @ 49:0bcdf74587d1 database-connection-manager

Cleanup
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Wed, 07 Dec 2011 17:24:36 +0100
parents f0afece42f48
children
line wrap: on
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