1 <?xml version="1.0" encoding="UTF-8"?>
3 * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
4 * Copyright (C) INRIA - Serge Steer
5 * Copyright (C) INRIA - 2008 - Jean-Baptiste Silvy
7 * This file must be used under the terms of the CeCILL.
8 * This source file is licensed as described in the file COPYING, which
9 * you should have received as part of this distribution. The terms
10 * are also available at
11 * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
14 <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="unzoom">
16 <refname>unzoom</refname>
17 <refpurpose>グラフィックのズームを解除する</refpurpose>
31 <para>Figureまたは Axesのハンドルのベクトル.</para>
39 <literal>unzoom()</literal> は,カレントのグラフィック図の
40 全ての軸からズーム効果を削除する際に使用されます:
43 <literal>unzoom(H)</literal> は,ハンドル<literal>H</literal>
44 のベクトルにより指定された全てのFigureおよびAxesについて
46 あるFigureに関するズーム効果を削除するのは,
47 その全ての子Axesからズーム効果を削除することと等価です.
52 <programlisting role="example"><![CDATA[
56 zoom_rect([16,-1,18,1])
68 rect=[3 -2 7 10]; // カレントの軸(直近の軸)の座標で指定された矩形
71 unzoom(a1) // 最初のプロットのみズーム解除
72 unzoom(a2) // 第二のプロットのみズーム解除y
73 zoom_rect(rect) // 再度ズーム
74 unzoom(gcf()) // 全ての軸のズームを解除, unzoom()と等価
77 <refsection role="see also">
79 <simplelist type="inline">
81 <link linkend="zoom_rect">zoom_rect</link>
84 <link linkend="axes_properties">axes_properties</link>