summaryrefslogtreecommitdiff
path: root/help/en_US/sampled2continuous.xml
blob: 8d3d2dffc0b1f5f76768a33a935151c6895a9923 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?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>xn:</term>
      <listitem><para> sampled signal</para></listitem></varlistentry>
   <varlistentry><term>s:</term>
      <listitem><para> sampling rate</para></listitem></varlistentry>
   <varlistentry><term>t:</term>
      <listitem><para>all instants of time t at which we need x(t) from x[n] </para></listitem></varlistentry>
   </variablelist>
</refsection>

<refsection>
   <title>Description</title>
   <para>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>