diff options
Diffstat (limited to 'help/en_US/idst1.xml')
-rw-r--r-- | help/en_US/idst1.xml | 36 |
1 files changed, 35 insertions, 1 deletions
diff --git a/help/en_US/idst1.xml b/help/en_US/idst1.xml index 74a9f0e..200ec53 100644 --- a/help/en_US/idst1.xml +++ b/help/en_US/idst1.xml @@ -17,7 +17,41 @@ <refnamediv> <refname>idst1</refname> - <refpurpose>funcprot(0);</refpurpose> + <refpurpose>This function computes the inverse type I discrete sine transform.</refpurpose> </refnamediv> + +<refsynopsisdiv> + <title>Calling Sequence</title> + <synopsis> + Y = idst(X) + Y = idst(X, N) + </synopsis> +</refsynopsisdiv> + +<refsection> + <title>Parameters</title> + <variablelist> + <varlistentry><term>X:</term> + <listitem><para> Matrix or integer</para></listitem></varlistentry> + <varlistentry><term>N:</term> + <listitem><para> If N is given, then X is padded or trimmed to length N before computing the transform.</para></listitem></varlistentry> + </variablelist> +</refsection> + +<refsection> + <title>Description</title> + <para> +This function computes the inverse type I discrete sine transform of Y. If N is given, then Y is padded or trimmed to length N before computing the transform. If Y is a matrix, compute the transform along the columns of the the matrix. +</para> +</refsection> + +<refsection> + <title>Examples</title> + <programlisting role="example"><![CDATA[ +idst([1,3,6]) +ans = +3.97487 -2.50000 0.97487 + ]]></programlisting> +</refsection> </refentry> |