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

« back to all changes in this revision

Viewing changes to modules/fileio/help/ja_JP/fullfile.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) 2008 - INRIA - Vincent COUVERT
5
 
 * ...
6
 
 * 
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-en.txt
12
 
 *
13
 
 -->
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" version="5.0-subset Scilab" xml:lang="ja" xml:id="fullfile">
15
 
  <refnamediv>
16
 
    <refname>fullfile</refname>
17
 
    <refpurpose>パーツから完全なファイル名を構築</refpurpose>
18
 
  </refnamediv>
19
 
  <refsynopsisdiv>
20
 
    <title>呼び出し手順</title>
21
 
    <synopsis>f = fullfile(varargin)</synopsis>
22
 
  </refsynopsisdiv>
23
 
  <refsection>
24
 
    <title>パラメータ</title>
25
 
    <variablelist>
26
 
      <varlistentry>
27
 
        <term>varargin</term>
28
 
        <listitem>
29
 
          <para>
30
 
            完全なファイル名を構築するために使用される全てのディレクトリとファイル名
31
 
            (少なくとも一つのディレクトリおよびファイル名)
32
 
          </para>
33
 
        </listitem>
34
 
      </varlistentry>
35
 
      <varlistentry>
36
 
        <term>f</term>
37
 
        <listitem>
38
 
          <para>完全なファイル名</para>
39
 
        </listitem>
40
 
      </varlistentry>
41
 
    </variablelist>
42
 
  </refsection>
43
 
  <refsection>
44
 
    <title>説明</title>
45
 
    <para>
46
 
      <literal>f= fullfile(varargin)</literal> は,
47
 
      実行されるプラットフォームを考慮した
48
 
      完全なファイル名を構築します.
49
 
      この際,ディレクトリがディレクトリセパレータで
50
 
      開始または終了するケースを処理します.
51
 
    </para>
52
 
  </refsection>
53
 
  <refsection>
54
 
    <title>例</title>
55
 
    <programlisting role="example"><![CDATA[f = fullfile("/home/", "\scilab", "macros", "\util", "fullfile.sci")
56
 
f = fullfile("C:", "\scilab", "macros", "\util", "fullfile.sci")
57
 
r = fullfile("/home/","\scilab","macros","\util", ["fullfile.sci"; "toto.sci"])]]></programlisting>
58
 
  </refsection>
59
 
  <refsection role="see also">
60
 
    <title>参照</title>
61
 
    <simplelist type="inline">
62
 
      <member>
63
 
        <link linkend="pathconvert">pathconvert</link>
64
 
      </member>
65
 
      <member>
66
 
        <link linkend="fileparts">fileparts</link>
67
 
      </member>
68
 
    </simplelist>
69
 
  </refsection>
70
 
</refentry>