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

« back to all changes in this revision

Viewing changes to modules/fileio/help/ja_JP/get_absolute_file_path.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) XXXX-2008 - 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:ns3="http://www.w3.org/1999/xhtml" xmlns:mml="http://www.w3.org/1998/Math/MathML" xmlns:db="http://docbook.org/ns/docbook" version="5.0-subset Scilab" xml:id="get_absolute_file_path" xml:lang="ja">
14
 
  <refnamediv>
15
 
    <refname>get_absolute_file_path</refname>
16
 
    <refpurpose>
17
 
      Scilabでオープンしたファイルの絶対パス名を出力します.
18
 
    </refpurpose>
19
 
  </refnamediv>
20
 
  <refsynopsisdiv>
21
 
    <title>呼び出し手順</title>
22
 
    <synopsis>pathname = get_absolute_file_path(filename)</synopsis>
23
 
  </refsynopsisdiv>
24
 
  <refsection>
25
 
    <title>パラメータ</title>
26
 
    <variablelist>
27
 
      <varlistentry>
28
 
        <term>filename</term>
29
 
        <listitem>
30
 
          <para>文字列 : ファイル名</para>
31
 
        </listitem>
32
 
      </varlistentry>
33
 
      <varlistentry>
34
 
        <term>pathname</term>
35
 
        <listitem>
36
 
          <para>文字列 : 絶対パス名</para>
37
 
        </listitem>
38
 
      </varlistentry>
39
 
    </variablelist>
40
 
  </refsection>
41
 
  <refsection>
42
 
    <title>説明</title>
43
 
    <para>
44
 
      Scilabですでにオープンしている
45
 
      ファイルの絶対パス名を出力します.
46
 
    </para>
47
 
    <para>get_absolute_file_path は
48
 
      Scilabで現在オープンしているファイルの内部リストの中で
49
 
      filename を検索し,そのパスを返します.
50
 
    </para>
51
 
    <para>"get_absolute_file_path" は,
52
 
      Scilabが現在オープンしているファイルの内部リストの中で
53
 
      "filename" を検索し,そのパスを出力します.
54
 
    </para>
55
 
    <para>オープンされていない場合,エラーを返します.</para>
56
 
    <para>警告 : 以前のバージョン (scilab 5.0.x) では,
57
 
      ファイルが見つからない場合,
58
 
      カレントのディレクトが返されていました.
59
 
    </para>
60
 
    <para>この関数は,
61
 
      Scilabスクリプトを実行する(パス)を見つけるために
62
 
      使用することができます.
63
 
    </para>
64
 
  </refsection>
65
 
  <refsection>
66
 
    <title>例</title>
67
 
    <programlisting role="example"><![CDATA[ 
68
 
// このスクリプトを実行
69
 
 
70
 
a=mopen(TMPDIR+'test.sce','wt');
71
 
disp(get_absolute_file_path('test.sce'));
72
 
mclose(a);
73
 
 ]]></programlisting>
74
 
  </refsection>
75
 
  <refsection role="see also">
76
 
    <title>参照</title>
77
 
    <simplelist type="inline">
78
 
      <member>
79
 
        <link linkend="getshortpathname">getshortpathname</link>
80
 
      </member>
81
 
      <member>
82
 
        <link linkend="getlongpathname">getlongpathname</link>
83
 
      </member>
84
 
      <member>
85
 
        <link linkend="pwd">pwd</link>
86
 
      </member>
87
 
    </simplelist>
88
 
  </refsection>
89
 
</refentry>