Woops, one should not test with input of all zeros

This commit is contained in:
Mark Borgerding
2003-10-29 04:29:01 +00:00
parent 97b18f3fef
commit ca4c74e07c
6 changed files with 96 additions and 70 deletions

View File

@ -8,13 +8,7 @@ endif
if nargin<4, scale_f2t=1
endif
if strcmp(prec,'short'),
kfft='./kffts';
elseif strcmp(prec,'double')
kfft='./kfftd';
else
kfft='./kfft';
endif
kfft= sprintf('./fftutil_%s',prec);
siglen = nfft;
sig=floor(32767*rand(1,siglen)) + j*floor(32767*rand(1,siglen));