summaryrefslogtreecommitdiff
path: root/macros/fft.sci
diff options
context:
space:
mode:
authorbgtushar2017-11-10 15:12:16 +0530
committerGitHub2017-11-10 15:12:16 +0530
commit577ee768ed44495c84bb236163f684e07a1cad30 (patch)
tree8ab91353da76f22bc6e54a2b133bbbfd4aeb6aff /macros/fft.sci
parent9f6962b19c4a5fa76f7525a72faabb1b754712ad (diff)
parentcc5c7ee42c6cb2ab94dd0e0f6985778657ab47f5 (diff)
downloadFOSSEE-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/fft.sci')
-rw-r--r--macros/fft.sci49
1 files changed, 49 insertions, 0 deletions
diff --git a/macros/fft.sci b/macros/fft.sci
new file mode 100644
index 0000000..0ea54ab
--- /dev/null
+++ b/macros/fft.sci
@@ -0,0 +1,49 @@
+function res = fft (x, n, dim)
+//Calculates the discrete Fourier transform of a matrix using Fast Fourier Transform algorithm.
+//Calling Sequence
+//fft (x, n, dim)
+//fft (x, n)
+//fft (x)
+//Parameters
+//x: input matrix
+//n: Specifies the number of elements of x to be used
+//dim: Specifies the dimention of the matrix along which the FFT is performed
+//Description
+//This is an Octave function.
+//The FFT is calculated along the first non-singleton dimension of the array. Thus, FFT is computed for each column of x.
+//
+//n is an integer specifying the number of elements of x to use. If n is larger than dimention along. which the FFT is calculated, then x is resized and padded with zeros.
+//Similarly, if n is smaller, then x is truncated.
+//
+//dim is an integer specifying the dimension of the matrix along which the FFT is performed.
+//Examples
+//x = [1 2 3; 4 5 6; 7 8 9]
+//n = 3
+//dim = 2
+//fft (x, n, dim)
+//ans =
+//
+// 6.0000 + 0.0000i -1.5000 + 0.8660i -1.5000 - 0.8660i
+// 15.0000 + 0.0000i -1.5000 + 0.8660i -1.5000 - 0.8660i
+// 24.0000 + 0.0000i -1.5000 + 0.8660i -1.5000 - 0.8660i
+
+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("fft", x)
+
+ case 2 then
+ res = callOctave("fft", x, n)
+
+ case 3 then
+ res = callOctave("fft", x, n, dim)
+
+ end
+endfunction