Mercurial > hg > ltpda
view m-toolbox/test/test_atan.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 source
% TEST_ATAN test atan() operator for analysis objects. % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % DESCRIPTION: TEST_ATAN Test atan() operator for analysis objects with % tsdata, fsdata cdata and xydata % % CALL: test_atan; % % HISTORY: 22-05-2007 Diepholz % Creation. % % VERSION: % $Id: test_atan.m,v 1.4 2009/02/02 15:20:37 hewitson Exp $ % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% function test_atan() % Create tsdata with a sinewave pl = plist('fs', 100, 'nsecs', 5, 'waveform', 'sine wave', 'f', 1.23, 'phi', 30); ts_data = ao(pl); % Create cdata with a 3x3 Matrix matr = [1 2 3; 4 5 6; 7 8 9]; c_data = cdata(matr); c_data = ao(c_data); % Create xydata with a exp function x = 1:1000; y = exp(x.^.5/2); xy_data = xydata(x,y); xy_data = ao(xy_data); % Some tests ao_out = atan(ts_data); ao_out = atan(ts_data, ts_data, ts_data); ao_out = atan(ts_data, c_data, xy_data); % Create different parameter lists to control the atan test pl1 = plist('xdata', 't', 'ydata', 'x'); ao_out = atan(ts_data, pl1); pl2 = plist('xdata', 'x''ydata', 'y'); ao_out = atan(xy_data, pl2); end