~ubuntu-branches/ubuntu/raring/scilab/raring-proposed

« back to all changes in this revision

Viewing changes to modules/functions/help/ja_JP/tree2code.xml

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2012-08-30 14:42:38 UTC
  • mfrom: (1.4.7)
  • Revision ID: package-import@ubuntu.com-20120830144238-c1y2og7dbm7m9nig
Tags: 5.4.0-beta-3-1~exp1
* New upstream release
* Update the scirenderer dep
* Get ride of libjhdf5-java dependency

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="UTF-8"?>
 
2
<!--
 
3
 * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
 
4
 * Copyright (C) INRIA - 
 
5
 * 
 
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
 
11
 *
 
12
 -->
 
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" version="5.0-subset Scilab" xml:lang="ja" xml:id="tree2code">
 
14
    <refnamediv>
 
15
        <refname>tree2code</refname>
 
16
        <refpurpose>Scilab関数のアスキー定義を生成する</refpurpose>
 
17
    </refnamediv>
 
18
    <refsynopsisdiv>
 
19
        <title>呼び出し手順</title>
 
20
        <synopsis>txt=tree2code(tree,prettyprint)</synopsis>
 
21
    </refsynopsisdiv>
 
22
    <refsection>
 
23
        <title>パラメータ</title>
 
24
        <variablelist>
 
25
            <varlistentry>
 
26
                <term>tree</term>
 
27
                <listitem>
 
28
                    <para>マクロツリー (macr2treeの出力)</para>
 
29
                </listitem>
 
30
            </varlistentry>
 
31
            <varlistentry>
 
32
                <term>prettyprint</term>
 
33
                <listitem>
 
34
                    <para>オプションの論理値</para>
 
35
                    <variablelist>
 
36
                        <varlistentry>
 
37
                            <term>%T</term>
 
38
                            <listitem>
 
39
                                <para>生成されるコードはインデント,整形されます</para>
 
40
                            </listitem>
 
41
                        </varlistentry>
 
42
                        <varlistentry>
 
43
                            <term>%F</term>
 
44
                            <listitem>
 
45
                                <para>生成されるコードは整形されません (デフォルト)</para>
 
46
                            </listitem>
 
47
                        </varlistentry>
 
48
                    </variablelist>
 
49
                </listitem>
 
50
            </varlistentry>
 
51
            <varlistentry>
 
52
                <term>txt</term>
 
53
                <listitem>
 
54
                    <para>文字列の列ベクトルで, Scilab命令を指定するテキスト</para>
 
55
                </listitem>
 
56
            </varlistentry>
 
57
        </variablelist>
 
58
    </refsection>
 
59
    <refsection>
 
60
        <title>説明</title>
 
61
        <para>
 
62
            読み込まれたScilab関数 "ツリー" (macr2treeの出力)を指定することで, tree2code
 
63
            によりコードを再生することができます.
 
64
        </para>
 
65
    </refsection>
 
66
    <refsection>
 
67
        <title>Examples</title>
 
68
        <programlisting role="example"><![CDATA[ 
 
69
tree=macr2tree(cosh);
 
70
txt=tree2code(tree,%T);
 
71
write(%io(2),txt,'(a)');
 
72
 ]]></programlisting>
 
73
    </refsection>
 
74
    <refsection role="see also">
 
75
        <title>参照</title>
 
76
        <simplelist type="inline">
 
77
            <member>
 
78
                <link linkend="macr2tree">macr2tree</link>
 
79
            </member>
 
80
        </simplelist>
 
81
    </refsection>
 
82
</refentry>