diff options
author | shamikam | 2017-11-07 15:59:48 +0530 |
---|---|---|
committer | shamikam | 2017-11-07 15:59:48 +0530 |
commit | c0c0582462720ed597b00e116506570577614e89 (patch) | |
tree | 31dedd23698e5357b19c810b7d7a8464100ef44a /help/en_US/sampled2continuous.xml | |
download | FOSSEE-Signal-Processing-Toolbox-c0c0582462720ed597b00e116506570577614e89.tar.gz FOSSEE-Signal-Processing-Toolbox-c0c0582462720ed597b00e116506570577614e89.tar.bz2 FOSSEE-Signal-Processing-Toolbox-c0c0582462720ed597b00e116506570577614e89.zip |
initial commit
Diffstat (limited to 'help/en_US/sampled2continuous.xml')
-rw-r--r-- | help/en_US/sampled2continuous.xml | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/help/en_US/sampled2continuous.xml b/help/en_US/sampled2continuous.xml new file mode 100644 index 0000000..a08d04a --- /dev/null +++ b/help/en_US/sampled2continuous.xml @@ -0,0 +1,60 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + * + * This help file was generated from sampled2continuous.sci using help_from_sci(). + * + --> + +<refentry version="5.0-subset Scilab" xml:id="sampled2continuous" 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>sampled2continuous</refname> + <refpurpose>This function calculates the output reconstructed from the samples n supplied as input, at a rate of 1/s samples per unit time.</refpurpose> + </refnamediv> + + +<refsynopsisdiv> + <title>Calling Sequence</title> + <synopsis> + x = sampled2continuous (n, s, t) + </synopsis> +</refsynopsisdiv> + +<refsection> + <title>Parameters</title> + <variablelist> + <varlistentry><term>n:</term> + <listitem><para> </para></listitem></varlistentry> + <varlistentry><term>s:</term> + <listitem><para> </para></listitem></varlistentry> + <varlistentry><term>t:</term> + <listitem><para> </para></listitem></varlistentry> + </variablelist> +</refsection> + +<refsection> + <title>Description</title> + <para> +This is an Octave function. +This function calculates the output reconstructed from the samples n supplied as input, at a rate of 1/s samples per unit time. +The third parameter t is all the instants where output x is needed from intput n and this time is relative to x(0). +</para> +</refsection> + +<refsection> + <title>Examples</title> + <programlisting role="example"><![CDATA[ +sampled2continuous([1,2,3],5,6) +ans = +2.4166806 + ]]></programlisting> +</refsection> +</refentry> |