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.1-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="xpolys">
15 <refname>xpolys</refname>
16 <refpurpose>一連のポリラインまたはポリゴンを描画</refpurpose>
20 <synopsis>xpolys(xpols,ypols,[draw])</synopsis>
26 <term>xpols,ypols</term>
28 <para>同じ大きさの行列 (p,n) (ポリラインの点).</para>
34 <para>大きさnのベクトル.</para>
42 <literal>xpolys</literal> はマーカまたは破線を用いて
45 <literal>xpols</literal> および <literal>ypols</literal>の列に保存されます.
48 ポリライン iの形式は <literal>draw(i)</literal>により以下のように指定されます:
53 <literal>draw(i)</literal> が負の場合, ID <literal>-draw(i)</literal>を
54 有するマーカがポリライン i を描画する際に使用されます
55 (マーカはカレントのパターンにより描画されます).
56 このIDの意味を参照するには<literal>xset()</literal>を参照してください.
61 <literal>draw(i)</literal> が厳密に正の場合,ID <literal>draw(i)</literal>の
62 線の種類(または色)がポリライン i に使用されます.
63 IDの意味を参照するには, <literal>xset()</literal> を使用してください.
71 plot2d(0,0,-1,"012"," ",[0,0,1,1])
74 xpolys(rand(3,5),rand(3,5),[-1,-2,0,1,2])
79 <programlisting role="example"><![CDATA[
80 plot2d(0,0,-1,"012"," ",[0,0,1,1])
83 xpolys(rand(3,5),rand(3,5),[-1,-2,0,1,2])
86 <refsection role="see also">
88 <simplelist type="inline">
90 <link linkend="xfpoly">xfpoly</link>
93 <link linkend="xfpolys">xfpolys</link>
96 <link linkend="xpoly">xpoly</link>