From 11f08cc395ea1b0de77af3dbb87a985418fc3800 Mon Sep 17 00:00:00 2001 From: Abhinav Dronamraju Date: Fri, 24 Nov 2017 19:19:30 +0530 Subject: Created xml help files --- help/en_US/fft.xml | 74 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 help/en_US/fft.xml (limited to 'help/en_US/fft.xml') diff --git a/help/en_US/fft.xml b/help/en_US/fft.xml new file mode 100644 index 0000000..12922ed --- /dev/null +++ b/help/en_US/fft.xml @@ -0,0 +1,74 @@ + + + + + + + + fft + 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 + + + -- cgit