diff options
Diffstat (limited to 'help/en_US/ifftn.xml')
-rw-r--r-- | help/en_US/ifftn.xml | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/help/en_US/ifftn.xml b/help/en_US/ifftn.xml new file mode 100644 index 0000000..6b21e57 --- /dev/null +++ b/help/en_US/ifftn.xml @@ -0,0 +1,55 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + * + * This help file was generated from ifftn.sci using help_from_sci(). + * + --> + +<refentry version="5.0-subset Scilab" xml:id="ifftn" xml:lang="en" + xmlns="http://docbook.org/ns/docbook" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:ns3="http://www.w3.org/1999/xhtml" + xmlns:mml="http://www.w3.org/1998/Math/MathML" + xmlns:scilab="http://www.scilab.org" + xmlns:db="http://docbook.org/ns/docbook"> + + <refnamediv> + <refname>ifftn</refname> + <refpurpose>Compute the inverse N-dimensional discrete Fourier transform of A using a Fast Fourier Transform (FFT) algorithm.</refpurpose> + </refnamediv> + + +<refsynopsisdiv> + <title>Calling Sequence</title> + <synopsis> + Y = ifftn(A) + Y = ifftn(A, size) + </synopsis> +</refsynopsisdiv> + +<refsection> + <title>Parameters</title> + <variablelist> + <varlistentry><term>A:</term> + <listitem><para> Matrix</para></listitem></varlistentry> + </variablelist> +</refsection> + +<refsection> + <title>Description</title> + <para> +Compute the inverse N-dimensional discrete Fourier transform of A using a Fast Fourier Transform (FFT) algorithm. The optional vector argument SIZE may be used specify the dimensions of the array to be used. If an element of SIZE is smaller than the corresponding dimension of A, then the dimension of A is truncated prior to performing the inverse FFT. Otherwise, if an element of SIZE is larger than the corresponding dimension then A is resized and padded with zeros. +</para> +</refsection> + +<refsection> + <title>Examples</title> + <programlisting role="example"><![CDATA[ +ifftn([2,3,4]) +ans = +3. - 0.5 - 0.2886751i - 0.5 + 0.2886751i + ]]></programlisting> +</refsection> +</refentry> |