Created
March 13, 2010 17:37
-
-
Save embed/331451 to your computer and use it in GitHub Desktop.
FFT test scilab
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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