1 <?xml version="1.0" encoding="UTF-8"?>
4 * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
5 * Copyright (C) ENPC - Jean-Philippe Chancelier
6 * Copyright (C) 2013 - Samuel GOUGEON
8 * This file must be used under the terms of the CeCILL.
9 * This source file is licensed as described in the file COPYING, which
10 * you should have received as part of this distribution. The terms
11 * are also available at
12 * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
16 <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">
20 <refname>replot</refname>
22 <refpurpose>カレントのグラフィックウインドウを新しい境界に
34 <synopsis>replot(area)</synopsis>
36 <synopsis>replot(area, axesHandles)</synopsis>
52 <para>大きさ 4の行ベクトル.</para>
60 <term>axesHandles</term>
64 <para>オプションの引数. 一つまたは複数のAxesを選択するための
84 <literal>replot</literal> はカレントのグラフィックウインドウの内容を
86 <literal>area = [xmin,ymin, xmax,ymax]</literal>のかの<literal>area = [xmin,ymin,zmin, xmax,ymax,zmax]</literal>で定義した新しい境界内に
92 <para>この変換はaxesHandles引数でAxesグラフィックハンドルにより指定された特定の軸に
96 新しい境界はカレントの図のカレントの軸に適用されます.
98 変換はこれらの軸の<literal>data_bounds</literal>の値を変更します.
103 <literal>tight_limits</literal>も
105 これらの境界を厳密に選択するために "on" に設定する必要があります
111 <link linkend="axes_properties">axes_properties</link>を参照ください).
121 <programlisting role="example"><![CDATA[
140 <programlisting role="example"><![CDATA[
145 replot([-1,-1,10,2],f.children(1)) // axesハンドルの値を指定
146 replot([-3,-2,8,4],f.children(2))
157 replot([-1,-1,10,2],f2.children(1))
159 replot([-3,-2,8,4],f2.children(2))
163 <programlisting role="example"><![CDATA[
164 //値は%nanで示さ端子は変更されません。
165 x = linspace(0,360,200).';
167 plot2d(x,[sind(x) tand(x)])
169 ax.data_bounds // 初期限界
170 replot([%nan,-10,%nan,10]) // YminとYmaxのだけ変更され
171 ax.data_bounds // 新しい制限
175 x = linspace(-4,4,100);
177 R = (X-0.5).^2 + (X.'+0.7).^2;
181 f.color_map = autumncolormap(100);
185 replot([-5 0 -0.4 0 5 0.5])
188 // いくつかのグラフィカルなマーカーを同時にトリミングすることができます。
190 x = linspace(-%pi,%pi,400);
192 plot2d(x,sin(1 ./sqrt(abs(x))))
195 plot2d(x,sinh(sqrt(abs(x))))
197 plot2d(x,cos(1 ./sqrt(abs(x))))
201 replot([-1 %nan 1.5 %nan], [ax1 ax2])
210 <refsection role="see also">
214 <simplelist type="inline">
218 <link linkend="zoom_rect">zoom_rect</link>
224 <link linkend="rubberbox">rubberbox</link>
230 <link linkend="axes_properties">axes_properties</link>
246 <revnumber>5.5.0</revnumber>
260 <para>いくつかのグラフィック主催者は、今、同時にサイズを変更することができます</para>
267 <literal>%nan</literal>であるように、結合を維持するために使用することができる。