diff options
author | bgtushar | 2017-11-10 15:12:16 +0530 |
---|---|---|
committer | GitHub | 2017-11-10 15:12:16 +0530 |
commit | 577ee768ed44495c84bb236163f684e07a1cad30 (patch) | |
tree | 8ab91353da76f22bc6e54a2b133bbbfd4aeb6aff /macros/ifft2.sci | |
parent | 9f6962b19c4a5fa76f7525a72faabb1b754712ad (diff) | |
parent | cc5c7ee42c6cb2ab94dd0e0f6985778657ab47f5 (diff) | |
download | FOSSEE-Signal-Processing-Toolbox-577ee768ed44495c84bb236163f684e07a1cad30.tar.gz FOSSEE-Signal-Processing-Toolbox-577ee768ed44495c84bb236163f684e07a1cad30.tar.bz2 FOSSEE-Signal-Processing-Toolbox-577ee768ed44495c84bb236163f684e07a1cad30.zip |
Merge pull request #2 from Brijeshcr/master
Brijesh functions added
Diffstat (limited to 'macros/ifft2.sci')
-rw-r--r-- | macros/ifft2.sci | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/macros/ifft2.sci b/macros/ifft2.sci new file mode 100644 index 0000000..8ecb1a5 --- /dev/null +++ b/macros/ifft2.sci @@ -0,0 +1,45 @@ +function res = ifft2 (A, m, n) +//Calculates the inverse two-dimensional discrete Fourier transform of A using a Fast Fourier Transform algorithm. +//Calling Sequence +//ifft2 (A, m, n) +//ifft2 (A) +//Parameters +//A: input matrix +//m: number of rows of A to be used +//n: number of columns of A to be used +//Description +//This is an Octave function. +//It performs inverse two-dimensional FFT on the matrix A. m and n may be used specify the number of rows and columns of A to use. If either of these is larger than the size of A, A is resized and padded with zeros. +//If A is a multi-dimensional matrix, each two-dimensional sub-matrix of A is treated separately. +//Examples +//x = [1 2 3; 4 5 6; 7 8 9] +//m = 4 +//n = 4 +//ifft2 (A, m, n) +//ans = +// +// 2.81250 + 0.00000i -0.37500 + 0.93750i 0.93750 + 0.00000i -0.37500 - 0.93750i +// -1.12500 + 0.93750i -0.31250 - 0.50000i -0.37500 + 0.31250i 0.31250 + 0.25000i +// 0.93750 + 0.00000i -0.12500 + 0.31250i 0.31250 + 0.00000i -0.12500 - 0.31250i +// -1.12500 - 0.93750i 0.31250 - 0.25000i -0.37500 - 0.31250i -0.31250 + 0.50000i + +funcprot(0); +lhs = argn(1) +rhs = argn(2) +if (rhs < 1 | rhs > 3) +error("Wrong number of input arguments.") +end + +select(rhs) + + case 1 then + res = callOctave("ifft2", A) + + case 2 then + error("Wrong number of input arguments.") + + case 3 then + res = callOctave("ifft2", A, m, n) + + end +endfunction |