Skip to content

Instantly share code, notes, and snippets.

@embed
Created March 13, 2010 17:37
Show Gist options
  • Save embed/331451 to your computer and use it in GitHub Desktop.
Save embed/331451 to your computer and use it in GitHub Desktop.
FFT test scilab
// Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
x = rand(1024,1024,"normal");
stacksize('max')
tic
X = fft(x,-1,1024,1);
X = fft(x,-1,1024,1);
X = fft(x,-1,1024,1);
X = fft(x,-1,1024,1);
X = fft(x,-1,1024,1);
X = fft(x,-1,1024,1);
X = fft(x,-1,1024,1);
X = fft(x,-1,1024,1);
toc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment