File: paramfplot2d.xml

package info (click to toggle)
scilab 5.2.2-9
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 334,832 kB
  • ctags: 52,586
  • sloc: xml: 526,945; ansic: 223,590; fortran: 163,080; java: 56,934; cpp: 33,840; tcl: 27,936; sh: 20,397; makefile: 9,908; ml: 9,451; perl: 1,323; cs: 614; lisp: 30
file content (90 lines) | stat: -rw-r--r-- 3,032 bytes parent folder | download
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<?xml version="1.0" encoding="UTF-8"?>
<refentry xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svg="http://www.w3.org/2000/svg" xmlns:mml="http://www.w3.org/1998/Math/MathML" xmlns:db="http://docbook.org/ns/docbook" version="5.0-subset Scilab" xml:lang="fr" xml:id="paramfplot2d">
  <info>
    <pubdate>$LastChangedDate$</pubdate>
  </info>
  <refnamediv>
    <refname>paramfplot2d </refname>
    <refpurpose> animation dans le plan d'une courbe définie par une fonction  </refpurpose>
  </refnamediv>
  <refsynopsisdiv>
    <title>Séquence d'appel</title>
    <synopsis>paramfplot2d(f,x,theta)
paramfplot2d(f,x,theta,flag)
paramfplot2d(f,x,theta,flagrect)</synopsis>
  </refsynopsisdiv>
  <refsection>
    <title>Paramètres</title>
    <variablelist>
      <varlistentry>
        <term>x  </term>
        <listitem>
          <para>valeurs réelles.
</para>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>f  </term>
        <listitem>
          <para>fonction <literal>y=f(x,t)</literal>. f est une fonction Scilab ou une routine externe liée dynamiquement (sous forme d'une chaîne de caractères).
</para>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>theta  </term>
        <listitem>
          <para>valeurs réelles (ensemble des paramètres).
</para>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>flag  </term>
        <listitem>
          <para>chaîne de caractères <literal>'no'</literal> ou <literal>'yes'</literal>: si "yes" l'écran est effacé entre deux dessins consécutifs.
</para>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>rect  </term>
        <listitem>
          <para>"rectangle" [xmin, xmax, ymin, ymax] (vecteur 1 x 4 de valeurs réelles),
</para>
        </listitem>
      </varlistentry>
    </variablelist>
  </refsection>
  <refsection>
    <title>Description</title>
    <para>
    Dessin animé de la fonction x--&gt;f(x,t) pour t=theta(1),theta(2), etc.
    f peut être une fonction Scilab ou une routine externe liée dynamiquement puisque
    y=f(x,t) est évaluée comme y=feval(x(:),t,f) (voir feval).
  </para>
    <para>
    f: fonction x,t -&gt; f(x,t) = à valeur dans R^N pour x = vecteur de R^N
    et t = nombre réel. x est un N-vecteur de valeurs de x et pour chaque t dans theta, f(x,t) = N-vecteur de valeurs de y.
  </para>
  </refsection>
  <refsection>
    <title>Exemples</title>
    <programlisting role="example"><![CDATA[ 
deff('y=f(x,t)','y=t*sin(x)')
x=linspace(0,2*%pi,50);theta=0:0.05:1;
paramfplot2d(f,x,theta);
 ]]></programlisting>
  </refsection>
  <refsection>
    <title>Voir Aussi</title>
    <simplelist type="inline">
      <member>
        <link linkend="plot2d">plot2d</link>
      </member>
      <member>
        <link linkend="feval">feval</link>
      </member>
      <member>
        <link linkend="fplot2d">fplot2d</link>
      </member>
    </simplelist>
  </refsection>
</refentry>