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
|
<?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="replot">
<info>
<pubdate>$LastChangedDate$</pubdate>
</info>
<refnamediv>
<refname>replot</refname>
<refpurpose>redessine la fenêtre graphique courante en
changeant les bornes</refpurpose>
</refnamediv>
<refsynopsisdiv>
<title>Séquence d'appel</title>
<synopsis>replot(rect)</synopsis>
</refsynopsisdiv>
<refsection>
<title>Paramètres</title>
<variablelist>
<varlistentry>
<term>rect</term>
<listitem>
<para>vecteur ligne de taille 4.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>handle</term>
<listitem>
<para>argument optionnel. Handle(s) graphiques de type Axes
définissant le(s) axe(s) auxquels les nouvelles bornes s'appliquent.</para>
</listitem>
</varlistentry>
</variablelist>
</refsection>
<refsection>
<title>Description</title>
<para><literal>replot</literal> est utilisée pour redessiner la fenêtre graphique
courante en changeant les bornes, données sous la forme
<literal>rect=[xmin,ymin,xmax,ymax]</literal>. En ancien mode graphique,
fonctionne uniquement avec le pilote <literal>"Rec"</literal>.</para>
<para>En mode graphique, cette transformation s'applique aux axes
spécifiés par <literal>handle</literal> Si <literal>handle</literal> n'est pas
renseigné, la transformation s'applique à l'axe courant de la figure
courante. La transformation change les valeurs <literal>data_bounds</literal>
des axes. A noter que la propriété <literal>tight_limits</literal> de l'axe doit
être mise à <literal>"on"</literal> pour selectionner strictement ces bornes
(voir <link linkend="axes_properties">axes_properties</link>).<literal/></para>
</refsection>
<refsection>
<title>Exemples</title>
<programlisting role="example"><![CDATA[
// Premier exemple
x=[0:0.1:2*%pi]';
plot2d(x,sin(x))
replot([-1,-1,10,2])
// second exemple
xdel(winsid());
plot() // plot demo
f=gcf();
replot([-1,-1,10,2],f.children(1)) // specify axes handle's value
replot([-3,-2,8,4],f.children(2))
]]></programlisting>
</refsection>
<refsection>
<title>Voir Aussi</title>
<simplelist type="inline">
<member>
<link linkend="xbasr">xbasr</link>
</member>
<member>
<link linkend="clf">clf</link>
</member>
</simplelist>
</refsection>
<refsection>
<title>Auteurs</title>
<para>J.Ph.C.</para>
</refsection>
</refentry>
|