1 <?xml version="1.0" encoding="UTF-8"?>
3 * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
4 * Copyright (C) ENPC - Jean-Philippe Chancelier
6 * This file must be used under the terms of the CeCILL.
7 * This source file is licensed as described in the file COPYING, which
8 * you should have received as part of this distribution. The terms
9 * are also available at
10 * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
13 <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" xmlns:scilab="http://www.scilab.org" xml:lang="ja" xml:id="replot">
15 <refname>replot</refname>
16 <refpurpose>カレントのグラフィックウインドウを新しい境界に
22 <synopsis>replot(rect,[handle])</synopsis>
30 <para>大きさ 4の行ベクトル.</para>
36 <para>オプションの引数. 一つまたは複数のAxesを選択するための
46 <literal>replot</literal> はカレントのグラフィックウインドウの内容を
47 <literal>rect=[xmin,ymin,xmax,ymax]</literal>で定義した新しい境界内に
49 古いグラフィック構文では,<literal>"Rec"</literal>ドライバでのみ
52 <para>この変換はhandle引数でAxesグラフィックハンドルにより指定された特定の軸に
54 新しい境界はカレントの図のカレントの軸に適用されます.
55 変換はこれらの軸の<literal>data_bounds</literal>の値を変更します.
56 axesのプロパティ<literal>tight_limits</literal>も
57 これらの境界を厳密に選択するために "on" に設定する必要があります
59 <link linkend="axes_properties">axes_properties</link>を参照ください).
68 replot([-1,-1,10,2],f.children(1))
69 replot([-3,-2,8,4],f.children(2))
75 <programlisting role="example"><![CDATA[
87 replot([-1,-1,10,2],f.children(1)) // axesハンドルの値を指定
88 replot([-3,-2,8,4],f.children(2))
91 <refsection role="see also">
93 <simplelist type="inline">
95 <link linkend="clf">clf</link>