Mercurial > hg > ltpda
view m-toolbox/test/test_matrix_fft.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 for matrix/fft % % % $Id: test_matrix_fft.m,v 1.1 2010/06/08 09:42:32 miquel Exp $ % clear %% single output a11 = ao(1:100,10); a11.setName a12 = ao(1:100,10); a12.setName a21 = ao(1:100,10); a21.setName a22 = ao(1:100,10); a22.setName mata = matrix(a11,a12,a21,a22,plist('shape',[2 2])); b = fft(mata); %% multiple output matb = matrix(a11,a12,a21,a22,plist('shape',[2 2])); b = fft(mata,matb);