view m-toolbox/test/test_asin.m @ 52:daf4eab1a51e database-connection-manager tip

Fix. Default password should be [] not an empty string
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Wed, 07 Dec 2011 17:29:47 +0100
parents f0afece42f48
children
line wrap: on
line source

% TEST_ASIN test asin() operator for analysis objects.
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% DESCRIPTION: TEST_ASIN Test asin() operator for analysis objects with
%                        tsdata, fsdata cdata and xydata
%
% CALL:    test_asin;
%
% HISTORY: 22-05-2007 Diepholz
%             Creation.
%
% VERSION: % $Id: test_asin.m,v 1.4 2009/02/02 15:20:39 hewitson Exp $
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function test_asin()
  
  % 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 = asin(ts_data);
  ao_out = asin(ts_data, ts_data, ts_data);
  ao_out = asin(ts_data, c_data, xy_data);
  
  % Create different parameter lists to control the asin test
  pl1 = plist('xdata', 't', 'ydata', 'x');
  ao_out = asin(ts_data, pl1);
  
  pl2 = plist('xdata', 'x', 'ydata', 'y');
  ao_out = asin(xy_data, pl2);
  
end