summaryrefslogtreecommitdiff
path: root/modules/parameters/help
diff options
context:
space:
mode:
authorShashank2017-05-29 12:40:26 +0530
committerShashank2017-05-29 12:40:26 +0530
commit0345245e860375a32c9a437c4a9d9cae807134e9 (patch)
treead51ecbfa7bcd3cc5f09834f1bb8c08feaa526a4 /modules/parameters/help
downloadscilab_for_xcos_on_cloud-0345245e860375a32c9a437c4a9d9cae807134e9.tar.gz
scilab_for_xcos_on_cloud-0345245e860375a32c9a437c4a9d9cae807134e9.tar.bz2
scilab_for_xcos_on_cloud-0345245e860375a32c9a437c4a9d9cae807134e9.zip
CMSCOPE changed
Diffstat (limited to 'modules/parameters/help')
-rwxr-xr-xmodules/parameters/help/en_US/add_param.xml101
-rwxr-xr-xmodules/parameters/help/en_US/addchapter.sce11
-rwxr-xr-xmodules/parameters/help/en_US/get_param.xml104
-rwxr-xr-xmodules/parameters/help/en_US/init_param.xml75
-rwxr-xr-xmodules/parameters/help/en_US/is_param.xml98
-rwxr-xr-xmodules/parameters/help/en_US/list_param.xml88
-rwxr-xr-xmodules/parameters/help/en_US/remove_param.xml98
-rwxr-xr-xmodules/parameters/help/en_US/set_param.xml101
-rwxr-xr-xmodules/parameters/help/fr_FR/addchapter.sce11
-rwxr-xr-xmodules/parameters/help/ja_JP/add_param.xml93
-rwxr-xr-xmodules/parameters/help/ja_JP/addchapter.sce11
-rwxr-xr-xmodules/parameters/help/ja_JP/get_param.xml100
-rwxr-xr-xmodules/parameters/help/ja_JP/init_param.xml72
-rwxr-xr-xmodules/parameters/help/ja_JP/is_param.xml95
-rwxr-xr-xmodules/parameters/help/ja_JP/list_param.xml88
-rwxr-xr-xmodules/parameters/help/ja_JP/remove_param.xml96
-rwxr-xr-xmodules/parameters/help/ja_JP/set_param.xml99
-rwxr-xr-xmodules/parameters/help/pt_BR/addchapter.sce11
-rwxr-xr-xmodules/parameters/help/ru_RU/addchapter.sce11
19 files changed, 1363 insertions, 0 deletions
diff --git a/modules/parameters/help/en_US/add_param.xml b/modules/parameters/help/en_US/add_param.xml
new file mode 100755
index 000000000..8786660a2
--- /dev/null
+++ b/modules/parameters/help/en_US/add_param.xml
@@ -0,0 +1,101 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
+ * Copyright (C) DIGITEO 2008-2010 - Yann COLLETTE
+ *
+ * This file must be used under the terms of the CeCILL.
+ * This source file is licensed as described in the file COPYING, which
+ * you should have received as part of this distribution. The terms
+ * are also available at
+ * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
+ *
+ -->
+<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="en" xml:id="add_param">
+ <refnamediv>
+ <refname>add_param</refname>
+ <refpurpose>Add a parameter to a list of parameters </refpurpose>
+ </refnamediv>
+ <refsynopsisdiv>
+ <title>Calling Sequence</title>
+ <synopsis>param_list = add_param(list_name,param_name,param_value)</synopsis>
+ </refsynopsisdiv>
+ <refsection>
+ <title>Arguments</title>
+ <variablelist>
+ <varlistentry>
+ <term>list_name</term>
+ <listitem>
+ <para>the list of parameters. This list must have been initialize by a call to init_param.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>param_name</term>
+ <listitem>
+ <para>a string. The name of the parameter to be added in the list of parameters.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>param_value</term>
+ <listitem>
+ <para>the value associated to the parameter param_name. This parameter is optional. You can set the value of this parameter via a call to set_param.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>param_list</term>
+ <listitem>
+ <para>the updated list of parameters.
+ </para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ </refsection>
+ <refsection>
+ <title>Description</title>
+ <para>
+ This function creates a new parameter in a list of parameters. You can set the value of the parameter using this function or you can set it via a call to set_param.
+ </para>
+ </refsection>
+ <refsection>
+ <title>Examples</title>
+ <programlisting role="example"><![CDATA[
+mylist = init_param();
+mylist = add_param(mylist,'minbound',[0 0 0]);
+ ]]></programlisting>
+ </refsection>
+ <refsection role="see also">
+ <title>See Also</title>
+ <simplelist type="inline">
+ <member>
+ <link linkend="init_param">init_param</link>
+ </member>
+ <member>
+ <link linkend="set_param">set_param</link>
+ </member>
+ <member>
+ <link linkend="get_param">get_param</link>
+ </member>
+ <member>
+ <link linkend="remove_param">remove_param</link>
+ </member>
+ <member>
+ <link linkend="is_param">is_param</link>
+ </member>
+ </simplelist>
+ </refsection>
+ <refsection>
+ <title>History</title>
+ <revhistory>
+ <revision>
+ <revnumber>5.5.0</revnumber>
+ <revremark>Second output argument (err) tagged as obsolete.</revremark>
+ </revision>
+ <revision>
+ <revnumber>5.5.1</revnumber>
+ <revremark>Second output argument removed.</revremark>
+ </revision>
+ </revhistory>
+ </refsection>
+</refentry>
diff --git a/modules/parameters/help/en_US/addchapter.sce b/modules/parameters/help/en_US/addchapter.sce
new file mode 100755
index 000000000..d7a522975
--- /dev/null
+++ b/modules/parameters/help/en_US/addchapter.sce
@@ -0,0 +1,11 @@
+// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
+// Copyright (C) 2009 - DIGITEO
+//
+// This file must be used under the terms of the CeCILL.
+// This source file is licensed as described in the file COPYING, which
+// you should have received as part of this distribution. The terms
+// are also available at
+// http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
+
+add_help_chapter("Parameters",SCI+"/modules/parameters/help/en_US",%T);
+
diff --git a/modules/parameters/help/en_US/get_param.xml b/modules/parameters/help/en_US/get_param.xml
new file mode 100755
index 000000000..5e2c10388
--- /dev/null
+++ b/modules/parameters/help/en_US/get_param.xml
@@ -0,0 +1,104 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
+ * Copyright (C) DIGITEO 2008-2010 - Yann COLLETTE
+ *
+ * This file must be used under the terms of the CeCILL.
+ * This source file is licensed as described in the file COPYING, which
+ * you should have received as part of this distribution. The terms
+ * are also available at
+ * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
+ *
+ -->
+<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" xmlns:scilab="http://www.scilab.org" xml:id="get_param" xml:lang="en">
+ <refnamediv>
+ <refname>get_param</refname>
+ <refpurpose>Get the value of a parameter in a parameter list</refpurpose>
+ </refnamediv>
+ <refsynopsisdiv>
+ <title>Calling Sequence</title>
+ <synopsis>[res,err] = get_param(list_name,param_name,default_value)</synopsis>
+ </refsynopsisdiv>
+ <refsection>
+ <title>Arguments</title>
+ <variablelist>
+ <varlistentry>
+ <term>list_name</term>
+ <listitem>
+ <para>the list of parameters. This list must have been initialized
+ by a call to init_param.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>param_name</term>
+ <listitem>
+ <para>a string. The name of the parameter to be add in the list of
+ parameters.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>default_value</term>
+ <listitem>
+ <para>the default value to be stored in the parameter if param_name
+ has not been found.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>res</term>
+ <listitem>
+ <para>the value of the parameter. If the parameter does not exist,
+ res = [].
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>err</term>
+ <listitem>
+ <para>an error flag which is set to %T if list_name is not of type
+ plist (this list has not been initialized by a call to
+ init_param).
+ </para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ </refsection>
+ <refsection>
+ <title>Description</title>
+ <para>This function returns the value of the parameter param_name in a
+ parameter list. If the err output parameter is not present, when an
+ error occurs, a message is printed in the console.
+ </para>
+ </refsection>
+ <refsection>
+ <title>Examples</title>
+ <programlisting role="example"><![CDATA[
+mylist = init_param();
+mylist = add_param(mylist,'minbound',[0 0 0]);
+disp(get_param(mylist,'minbound',-[1 1 1]));
+disp(get_param(mylist,'maxbound', [1 1 1]));
+ ]]></programlisting>
+ </refsection>
+ <refsection role="see also">
+ <title>See Also</title>
+ <simplelist type="inline">
+ <member>
+ <link linkend="init_param">init_param</link>
+ </member>
+ <member>
+ <link linkend="set_param">set_param</link>
+ </member>
+ <member>
+ <link linkend="add_param">add_param</link>
+ </member>
+ <member>
+ <link linkend="remove_param">remove_param</link>
+ </member>
+ <member>
+ <link linkend="is_param">is_param</link>
+ </member>
+ </simplelist>
+ </refsection>
+</refentry>
diff --git a/modules/parameters/help/en_US/init_param.xml b/modules/parameters/help/en_US/init_param.xml
new file mode 100755
index 000000000..27238a1ea
--- /dev/null
+++ b/modules/parameters/help/en_US/init_param.xml
@@ -0,0 +1,75 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
+ * Copyright (C) DIGITEO 2008-2010 - Yann COLLETTE
+ *
+ * This file must be used under the terms of the CeCILL.
+ * This source file is licensed as described in the file COPYING, which
+ * you should have received as part of this distribution. The terms
+ * are also available at
+ * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
+ *
+ -->
+<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" xmlns:scilab="http://www.scilab.org" xml:id="init_param" xml:lang="en">
+ <refnamediv>
+ <refname>init_param</refname>
+ <refpurpose>Initialize the structure which will handles the parameters
+ list
+ </refpurpose>
+ </refnamediv>
+ <refsynopsisdiv>
+ <title>Calling Sequence</title>
+ <synopsis>param_list = init_param(['param_name1',param_value1,...])</synopsis>
+ </refsynopsisdiv>
+ <refsection>
+ <title>Arguments</title>
+ <variablelist>
+ <varlistentry>
+ <term>param_list</term>
+ <listitem>
+ <para>an initialized list of parameters (if no input
+ parameters are shipped, this list is empty and is
+ of type plist).
+ </para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ </refsection>
+ <refsection>
+ <title>Description</title>
+ <para>This function initialize an empty list of parameters. You must
+ initialize the list of parameters before using it.
+ </para>
+ </refsection>
+ <refsection>
+ <title>Examples</title>
+ <programlisting role="example"><![CDATA[
+// Creation of an empty plist
+mylist = init_param();
+mylist = add_param(mylist,'minbound',[0 0 0]);
+
+// Creation of a pre-filled plist
+mylist_2 = init_param('minbound', [0 0 0], 'maxbound', [1 1 1]);
+ ]]></programlisting>
+ </refsection>
+ <refsection role="see also">
+ <title>See Also</title>
+ <simplelist type="inline">
+ <member>
+ <link linkend="add_param">add_param</link>
+ </member>
+ <member>
+ <link linkend="set_param">set_param</link>
+ </member>
+ <member>
+ <link linkend="get_param">get_param</link>
+ </member>
+ <member>
+ <link linkend="remove_param">remove_param</link>
+ </member>
+ <member>
+ <link linkend="is_param">is_param</link>
+ </member>
+ </simplelist>
+ </refsection>
+</refentry>
diff --git a/modules/parameters/help/en_US/is_param.xml b/modules/parameters/help/en_US/is_param.xml
new file mode 100755
index 000000000..86dd444bf
--- /dev/null
+++ b/modules/parameters/help/en_US/is_param.xml
@@ -0,0 +1,98 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
+ * Copyright (C) DIGITEO 2008-2010 - Yann COLLETTE
+ *
+ * This file must be used under the terms of the CeCILL.
+ * This source file is licensed as described in the file COPYING, which
+ * you should have received as part of this distribution. The terms
+ * are also available at
+ * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
+ *
+ -->
+<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" xmlns:scilab="http://www.scilab.org" xml:id="is_param" xml:lang="en">
+ <refnamediv>
+ <refname>is_param</refname>
+ <refpurpose>Check if a parameter is present in a parameter
+ list
+ </refpurpose>
+ </refnamediv>
+ <refsynopsisdiv>
+ <title>Calling Sequence</title>
+ <synopsis>[res,err] = is_param(list_name,param_name)</synopsis>
+ </refsynopsisdiv>
+ <refsection>
+ <title>Arguments</title>
+ <variablelist>
+ <varlistentry>
+ <term>list_name</term>
+ <listitem>
+ <para>the list of parameters. This list must have been initialize by
+ a call to init_param.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>param_name</term>
+ <listitem>
+ <para>a string. The name of the parameter to be add in the list of
+ parameters.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>res</term>
+ <listitem>
+ <para>the result: %T is the parameter is present, %F
+ otherwise.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>err</term>
+ <listitem>
+ <para>an error flag which is set to %T if list_name is not of type
+ plist (this list has not been initialized by a call to
+ init_param).
+ </para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ </refsection>
+ <refsection>
+ <title>Description</title>
+ <para>This function checks if a parameter is present in a parameter
+ list. If the err output parameter is not present, when an error
+ occurs, a message is printed in the console.
+ </para>
+ </refsection>
+ <refsection>
+ <title>Examples</title>
+ <programlisting role="example"><![CDATA[
+mylist = init_param();
+mylist = add_param(mylist,'minbound',[0 0 0]);
+disp(is_param(mylist,'minbound'));
+disp(is_param(mylist,'maxbound'));
+ ]]></programlisting>
+ </refsection>
+ <refsection role="see also">
+ <title>See Also</title>
+ <simplelist type="inline">
+ <member>
+ <link linkend="init_param">init_param</link>
+ </member>
+ <member>
+ <link linkend="set_param">set_param</link>
+ </member>
+ <member>
+ <link linkend="get_param">get_param</link>
+ </member>
+ <member>
+ <link linkend="remove_param">remove_param</link>
+ </member>
+ <member>
+ <link linkend="add_param">add_param</link>
+ </member>
+ </simplelist>
+ </refsection>
+</refentry>
diff --git a/modules/parameters/help/en_US/list_param.xml b/modules/parameters/help/en_US/list_param.xml
new file mode 100755
index 000000000..f81f9137e
--- /dev/null
+++ b/modules/parameters/help/en_US/list_param.xml
@@ -0,0 +1,88 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
+ * Copyright (C) DIGITEO 2008-2010 - Yann COLLETTE
+ *
+ * This file must be used under the terms of the CeCILL.
+ * This source file is licensed as described in the file COPYING, which
+ * you should have received as part of this distribution. The terms
+ * are also available at
+ * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
+ *
+ -->
+<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" xmlns:scilab="http://www.scilab.org" xml:id="list_param" xml:lang="en">
+ <refnamediv>
+ <refname>list_param</refname>
+ <refpurpose>List all the parameters name in a list of
+ parameters
+ </refpurpose>
+ </refnamediv>
+ <refsynopsisdiv>
+ <title>Calling Sequence</title>
+ <synopsis>[string_list,err] = list_param(list_name)</synopsis>
+ </refsynopsisdiv>
+ <refsection>
+ <title>Arguments</title>
+ <variablelist>
+ <varlistentry>
+ <term>list_name</term>
+ <listitem>
+ <para>the list of parameters. This list must have been initialize by
+ a call to init_param.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>string_list</term>
+ <listitem>
+ <para>the list of parameters name.</para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>err</term>
+ <listitem>
+ <para>an error flag which is set to %T if list_name is not of type
+ plist (this list has not been initialized by a call to
+ init_param).
+ </para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ </refsection>
+ <refsection>
+ <title>Description</title>
+ <para>List all the parameters name in a list of parameters. If the err
+ output parameter is not present, when an error occurs, a message is
+ printed in the console.
+ </para>
+ </refsection>
+ <refsection>
+ <title>Examples</title>
+ <programlisting role="example"><![CDATA[
+mylist = init_param();
+mylist = add_param(mylist,'minbound',[0 0 0]);
+mylist = add_param(mylist,'maxbound',[1 1 1]);
+disp(list_param(mylist));
+ ]]></programlisting>
+ </refsection>
+ <refsection role="see also">
+ <title>See Also</title>
+ <simplelist type="inline">
+ <member>
+ <link linkend="init_param">init_param</link>
+ </member>
+ <member>
+ <link linkend="set_param">set_param</link>
+ </member>
+ <member>
+ <link linkend="get_param">get_param</link>
+ </member>
+ <member>
+ <link linkend="remove_param">remove_param</link>
+ </member>
+ <member>
+ <link linkend="is_param">is_param</link>
+ </member>
+ </simplelist>
+ </refsection>
+</refentry>
diff --git a/modules/parameters/help/en_US/remove_param.xml b/modules/parameters/help/en_US/remove_param.xml
new file mode 100755
index 000000000..28fa54aa7
--- /dev/null
+++ b/modules/parameters/help/en_US/remove_param.xml
@@ -0,0 +1,98 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
+ * Copyright (C) DIGITEO 2008-2010 - Yann COLLETTE
+ *
+ * This file must be used under the terms of the CeCILL.
+ * This source file is licensed as described in the file COPYING, which
+ * you should have received as part of this distribution. The terms
+ * are also available at
+ * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
+ *
+ -->
+<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" xmlns:scilab="http://www.scilab.org" xml:id="remove_param" xml:lang="en">
+ <refnamediv>
+ <refname>remove_param</refname>
+ <refpurpose>Remove a parameter and its associated value from a list of
+ parameters
+ </refpurpose>
+ </refnamediv>
+ <refsynopsisdiv>
+ <title>Calling Sequence</title>
+ <synopsis>[param_list,err] = remove_param(list_name,param_name)</synopsis>
+ </refsynopsisdiv>
+ <refsection>
+ <title>Arguments</title>
+ <variablelist>
+ <varlistentry>
+ <term>list_name</term>
+ <listitem>
+ <para>the list of parameters. This list must have been initialize by
+ a call to init_param.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>param_name</term>
+ <listitem>
+ <para>a string. The name of the parameter to be removed from the
+ list of parameters. If the parameter does not exist, nothing
+ happens.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>param_list</term>
+ <listitem>
+ <para>the updated list of parameters.</para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>err</term>
+ <listitem>
+ <para>an error flag which is set to %T if list_name is not of type
+ plist (this list has not been initialized by a call to
+ init_param).
+ </para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ </refsection>
+ <refsection>
+ <title>Description</title>
+ <para>This function allows to remove a parameter and its associated
+ value from a list of parameters. If the err output parameter is not
+ present, when an error occurs, a message is printed in the
+ console.
+ </para>
+ </refsection>
+ <refsection>
+ <title>Examples</title>
+ <programlisting role="example"><![CDATA[
+mylist = init_param();
+mylist = add_param(mylist,'minbound',[0 0 0]);
+mylist = add_param(mylist,'maxbound',[0 0 0]);
+mylist = remove_param(mylist,'minbound');
+ ]]></programlisting>
+ </refsection>
+ <refsection role="see also">
+ <title>See Also</title>
+ <simplelist type="inline">
+ <member>
+ <link linkend="init_param">init_param</link>
+ </member>
+ <member>
+ <link linkend="set_param">set_param</link>
+ </member>
+ <member>
+ <link linkend="get_param">get_param</link>
+ </member>
+ <member>
+ <link linkend="add_param">add_param</link>
+ </member>
+ <member>
+ <link linkend="is_param">is_param</link>
+ </member>
+ </simplelist>
+ </refsection>
+</refentry>
diff --git a/modules/parameters/help/en_US/set_param.xml b/modules/parameters/help/en_US/set_param.xml
new file mode 100755
index 000000000..9f54c5a83
--- /dev/null
+++ b/modules/parameters/help/en_US/set_param.xml
@@ -0,0 +1,101 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
+ * Copyright (C) DIGITEO 2008-2010 - Yann COLLETTE
+ *
+ * This file must be used under the terms of the CeCILL.
+ * This source file is licensed as described in the file COPYING, which
+ * you should have received as part of this distribution. The terms
+ * are also available at
+ * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
+ *
+ -->
+<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" xmlns:scilab="http://www.scilab.org" xml:id="set_param" xml:lang="en">
+ <refnamediv>
+ <refname>set_param</refname>
+ <refpurpose>Set the value of a parameter in a parameter list</refpurpose>
+ </refnamediv>
+ <refsynopsisdiv>
+ <title>Calling Sequence</title>
+ <synopsis>[param_list,err] = set_param(list_name,param_name,param_value)</synopsis>
+ </refsynopsisdiv>
+ <refsection>
+ <title>Arguments</title>
+ <variablelist>
+ <varlistentry>
+ <term>list_name</term>
+ <listitem>
+ <para>the list of parameters. This list must have been initialize by
+ a call to init_param.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>param_name</term>
+ <listitem>
+ <para>a string. The name of the parameter to be added in the list of
+ parameters.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>param_value</term>
+ <listitem>
+ <para>the value to be associated to the parameter param_name.</para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>param_list</term>
+ <listitem>
+ <para>the updated list of parameters.</para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>err</term>
+ <listitem>
+ <para>an error flag which is set to %T if list_name is not of type
+ plist (this list has not been initialized by a call to
+ init_param).
+ </para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ </refsection>
+ <refsection>
+ <title>Description</title>
+ <para>This function sets the value of an already existing parameter.
+ If the parameter does not exist, err is set to %T. If the err output
+ parameter is not present, when an error occurs, a message is printed
+ in the console.
+ </para>
+ </refsection>
+ <refsection>
+ <title>Examples</title>
+ <programlisting role="example"><![CDATA[
+mylist = init_param();
+mylist = add_param(mylist,'minbound',[0 0 0]);
+[mylist,err] = set_param(mylist,'minbound',[1 1 1]); disp(err);
+[mylist,err] = set_param(mylist,'maxbound',[1 1 1]); disp(err);
+ ]]></programlisting>
+ </refsection>
+ <refsection role="see also">
+ <title>See Also</title>
+ <simplelist type="inline">
+ <member>
+ <link linkend="init_param">init_param</link>
+ </member>
+ <member>
+ <link linkend="add_param">add_param</link>
+ </member>
+ <member>
+ <link linkend="get_param">get_param</link>
+ </member>
+ <member>
+ <link linkend="remove_param">remove_param</link>
+ </member>
+ <member>
+ <link linkend="is_param">is_param</link>
+ </member>
+ </simplelist>
+ </refsection>
+</refentry>
diff --git a/modules/parameters/help/fr_FR/addchapter.sce b/modules/parameters/help/fr_FR/addchapter.sce
new file mode 100755
index 000000000..cc81df69e
--- /dev/null
+++ b/modules/parameters/help/fr_FR/addchapter.sce
@@ -0,0 +1,11 @@
+// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
+// Copyright (C) 2009 - DIGITEO
+//
+// This file must be used under the terms of the CeCILL.
+// This source file is licensed as described in the file COPYING, which
+// you should have received as part of this distribution. The terms
+// are also available at
+// http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
+
+add_help_chapter("Parameters",SCI+"/modules/parameters/help/fr_FR",%T);
+
diff --git a/modules/parameters/help/ja_JP/add_param.xml b/modules/parameters/help/ja_JP/add_param.xml
new file mode 100755
index 000000000..b9aa495bc
--- /dev/null
+++ b/modules/parameters/help/ja_JP/add_param.xml
@@ -0,0 +1,93 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
+ * Copyright (C) DIGITEO 2008-2010 - Yann COLLETTE
+ *
+ * This file must be used under the terms of the CeCILL.
+ * This source file is licensed as described in the file COPYING, which
+ * you should have received as part of this distribution. The terms
+ * are also available at
+ * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
+ *
+ -->
+<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="add_param">
+ <refnamediv>
+ <refname>add_param</refname>
+ <refpurpose>パラメータリストにパラメータを追加</refpurpose>
+ </refnamediv>
+ <refsynopsisdiv>
+ <title>呼び出し手順</title>
+ <synopsis>param_list = add_param(list_name,param_name,param_value)</synopsis>
+ </refsynopsisdiv>
+ <refsection>
+ <title>引数</title>
+ <variablelist>
+ <varlistentry>
+ <term>list_name</term>
+ <listitem>
+ <para>パラメータのリスト. このリストはinit_paramにより
+ 初期化されている必要があります.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>param_name</term>
+ <listitem>
+ <para>文字列. パラメータのリストに追加されるパラメータの名前.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>param_value</term>
+ <listitem>
+ <para>パラメータparam_nameの値. このパラメータはオプションです.
+ このパラメータの値は set_param をコールすることにより
+ 設定可能です.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>param_list</term>
+ <listitem>
+ <para>更新後のパラメータのリスト.
+ </para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ </refsection>
+ <refsection>
+ <title>説明</title>
+ <para>
+ この関数は,パラメータのリストに新しいパラメータを作成します.
+ このパラメータの値は,この関数またはset_paramをコールすることにより
+ 設定できます.
+ </para>
+ </refsection>
+ <refsection>
+ <title>例</title>
+ <programlisting role="example"><![CDATA[
+mylist = init_param();
+mylist = add_param(mylist,'minbound',[0 0 0]);
+ ]]></programlisting>
+ </refsection>
+ <refsection role="see also">
+ <title>参照</title>
+ <simplelist type="inline">
+ <member>
+ <link linkend="init_param">init_param</link>
+ </member>
+ <member>
+ <link linkend="set_param">set_param</link>
+ </member>
+ <member>
+ <link linkend="get_param">get_param</link>
+ </member>
+ <member>
+ <link linkend="remove_param">remove_param</link>
+ </member>
+ <member>
+ <link linkend="is_param">is_param</link>
+ </member>
+ </simplelist>
+ </refsection>
+</refentry>
diff --git a/modules/parameters/help/ja_JP/addchapter.sce b/modules/parameters/help/ja_JP/addchapter.sce
new file mode 100755
index 000000000..5abea3431
--- /dev/null
+++ b/modules/parameters/help/ja_JP/addchapter.sce
@@ -0,0 +1,11 @@
+// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
+// Copyright (C) 2009 - DIGITEO
+//
+// This file must be used under the terms of the CeCILL.
+// This source file is licensed as described in the file COPYING, which
+// you should have received as part of this distribution. The terms
+// are also available at
+// http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
+
+add_help_chapter("Parameters",SCI+"/modules/parameters/help/ja_JP",%T);
+
diff --git a/modules/parameters/help/ja_JP/get_param.xml b/modules/parameters/help/ja_JP/get_param.xml
new file mode 100755
index 000000000..91bd8c51b
--- /dev/null
+++ b/modules/parameters/help/ja_JP/get_param.xml
@@ -0,0 +1,100 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
+ * Copyright (C) DIGITEO 2008-2010 - Yann COLLETTE
+ *
+ * This file must be used under the terms of the CeCILL.
+ * This source file is licensed as described in the file COPYING, which
+ * you should have received as part of this distribution. The terms
+ * are also available at
+ * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
+ *
+ -->
+<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" xmlns:scilab="http://www.scilab.org" xml:id="get_param" xml:lang="ja">
+ <refnamediv>
+ <refname>get_param</refname>
+ <refpurpose>パラメータリストからパラメータの値を取得</refpurpose>
+ </refnamediv>
+ <refsynopsisdiv>
+ <title>呼び出し手順</title>
+ <synopsis>[res,err] = get_param(list_name,param_name,default_value)</synopsis>
+ </refsynopsisdiv>
+ <refsection>
+ <title>引数</title>
+ <variablelist>
+ <varlistentry>
+ <term>list_name</term>
+ <listitem>
+ <para>パラメータのリスト. このリストはinit_paramをコールすることにより
+ 初期化されている必要があります.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>param_name</term>
+ <listitem>
+ <para>文字列. パラメータのリストのパラメータの名前.</para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>default_value</term>
+ <listitem>
+ <para>param_nameが見つからない場合に使用されるデフォルト値.</para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>res</term>
+ <listitem>
+ <para>パラメータの値. パラメータが存在しない場合,
+ res = [] となります.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>err</term>
+ <listitem>
+ <para>エラーフラグで,list_nameがplist型でない
+ (このリストはinit_paramをコールすることにより初期化されていない)
+ 場合 %T に設定されます.
+ </para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ </refsection>
+ <refsection>
+ <title>説明</title>
+ <para>この関数はパラメータリストのパラメータparam_nameの値を返します.
+ エラー発生時に出力パラメータerrが存在しない場合,
+ メッセージがコンソールに出力されます.
+ </para>
+ </refsection>
+ <refsection>
+ <title>例</title>
+ <programlisting role="example"><![CDATA[
+mylist = init_param();
+mylist = add_param(mylist,'minbound',[0 0 0]);
+disp(get_param(mylist,'minbound',-[1 1 1]));
+disp(get_param(mylist,'maxbound', [1 1 1]));
+ ]]></programlisting>
+ </refsection>
+ <refsection role="see also">
+ <title>参照</title>
+ <simplelist type="inline">
+ <member>
+ <link linkend="init_param">init_param</link>
+ </member>
+ <member>
+ <link linkend="set_param">set_param</link>
+ </member>
+ <member>
+ <link linkend="add_param">add_param</link>
+ </member>
+ <member>
+ <link linkend="remove_param">remove_param</link>
+ </member>
+ <member>
+ <link linkend="is_param">is_param</link>
+ </member>
+ </simplelist>
+ </refsection>
+</refentry>
diff --git a/modules/parameters/help/ja_JP/init_param.xml b/modules/parameters/help/ja_JP/init_param.xml
new file mode 100755
index 000000000..571ed514e
--- /dev/null
+++ b/modules/parameters/help/ja_JP/init_param.xml
@@ -0,0 +1,72 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
+ * Copyright (C) DIGITEO 2008-2010 - Yann COLLETTE
+ *
+ * This file must be used under the terms of the CeCILL.
+ * This source file is licensed as described in the file COPYING, which
+ * you should have received as part of this distribution. The terms
+ * are also available at
+ * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
+ *
+ -->
+<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" xmlns:scilab="http://www.scilab.org" xml:id="init_param" xml:lang="ja">
+ <refnamediv>
+ <refname>init_param</refname>
+ <refpurpose>パラメータリストを扱う構造体を初期化</refpurpose>
+ </refnamediv>
+ <refsynopsisdiv>
+ <title>呼び出し手順</title>
+ <synopsis>param_list = init_param(['param_name1',param_value1,...])</synopsis>
+ </refsynopsisdiv>
+ <refsection>
+ <title>引数</title>
+ <variablelist>
+ <varlistentry>
+ <term>param_list</term>
+ <listitem>
+ <para>初期化済みのパラメータのリスト
+ (入力パラメータが指定されない場合, このリストは空となり,
+ plist 型となります).
+ </para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ </refsection>
+ <refsection>
+ <title>説明</title>
+ <para>この関数はパラメータの空のリストを初期化します.
+ パラメータのリストは使用前に初期化する必要があります.
+ </para>
+ </refsection>
+ <refsection>
+ <title>例</title>
+ <programlisting role="example"><![CDATA[
+// 空の plistを作成
+mylist = init_param();
+mylist = add_param(mylist,'minbound',[0 0 0]);
+// 代入済みのplistを作成
+mylist_2 = init_param('minbound', [0 0 0], 'maxbound', [1 1 1]);
+ ]]></programlisting>
+ </refsection>
+ <refsection role="see also">
+ <title>参照</title>
+ <simplelist type="inline">
+ <member>
+ <link linkend="add_param">add_param</link>
+ </member>
+ <member>
+ <link linkend="set_param">set_param</link>
+ </member>
+ <member>
+ <link linkend="get_param">get_param</link>
+ </member>
+ <member>
+ <link linkend="remove_param">remove_param</link>
+ </member>
+ <member>
+ <link linkend="is_param">is_param</link>
+ </member>
+ </simplelist>
+ </refsection>
+</refentry>
diff --git a/modules/parameters/help/ja_JP/is_param.xml b/modules/parameters/help/ja_JP/is_param.xml
new file mode 100755
index 000000000..2143d328d
--- /dev/null
+++ b/modules/parameters/help/ja_JP/is_param.xml
@@ -0,0 +1,95 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
+ * Copyright (C) DIGITEO 2008-2010 - Yann COLLETTE
+ *
+ * This file must be used under the terms of the CeCILL.
+ * This source file is licensed as described in the file COPYING, which
+ * you should have received as part of this distribution. The terms
+ * are also available at
+ * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
+ *
+ -->
+<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" xmlns:scilab="http://www.scilab.org" xml:id="is_param" xml:lang="ja">
+ <refnamediv>
+ <refname>is_param</refname>
+ <refpurpose>パラメータがパラメータリストに存在するかどうかを確認</refpurpose>
+ </refnamediv>
+ <refsynopsisdiv>
+ <title>呼び出し手順</title>
+ <synopsis>[res,err] = is_param(list_name,param_name)</synopsis>
+ </refsynopsisdiv>
+ <refsection>
+ <title>引数</title>
+ <variablelist>
+ <varlistentry>
+ <term>list_name</term>
+ <listitem>
+ <para>パラメータのリスト.このリストはinit_paramにより
+ 初期化されている必要があります.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>param_name</term>
+ <listitem>
+ <para>文字列.
+ パラメータリストで調べるパラメータの名前.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>res</term>
+ <listitem>
+ <para>結果: パラメータが存在する場合は %T, それ以外は %F.</para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>err</term>
+ <listitem>
+ <para>エラーフラグで,list_nameがplist型でない
+ (このリストはinit_paramをコールすることにより初期化されていない)
+ 場合 %T に設定されます.
+ </para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ </refsection>
+ <refsection>
+ <title>説明</title>
+ <para>この関数は,指定したパラメータがパラメータリストに
+ 存在するかどうかを調べます.
+ エラー発生時に出力パラメータerrが存在しない場合,
+ メッセージがコンソールに出力されます.
+ </para>
+ </refsection>
+ <refsection>
+ <title>例</title>
+ <programlisting role="example"><![CDATA[
+mylist = init_param();
+mylist = add_param(mylist,'minbound',[0 0 0]);
+disp(is_param(mylist,'minbound'));
+disp(is_param(mylist,'maxbound'));
+ ]]></programlisting>
+ </refsection>
+ <refsection role="see also">
+ <title>参照</title>
+ <simplelist type="inline">
+ <member>
+ <link linkend="init_param">init_param</link>
+ </member>
+ <member>
+ <link linkend="set_param">set_param</link>
+ </member>
+ <member>
+ <link linkend="get_param">get_param</link>
+ </member>
+ <member>
+ <link linkend="remove_param">remove_param</link>
+ </member>
+ <member>
+ <link linkend="add_param">add_param</link>
+ </member>
+ </simplelist>
+ </refsection>
+</refentry>
diff --git a/modules/parameters/help/ja_JP/list_param.xml b/modules/parameters/help/ja_JP/list_param.xml
new file mode 100755
index 000000000..ccf7e28a2
--- /dev/null
+++ b/modules/parameters/help/ja_JP/list_param.xml
@@ -0,0 +1,88 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
+ * Copyright (C) DIGITEO 2008-2010 - Yann COLLETTE
+ *
+ * This file must be used under the terms of the CeCILL.
+ * This source file is licensed as described in the file COPYING, which
+ * you should have received as part of this distribution. The terms
+ * are also available at
+ * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
+ *
+ -->
+<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" xmlns:scilab="http://www.scilab.org" xml:id="list_param" xml:lang="ja">
+ <refnamediv>
+ <refname>list_param</refname>
+ <refpurpose>パラメータリストのパラメータ名のリストを取得
+ </refpurpose>
+ </refnamediv>
+ <refsynopsisdiv>
+ <title>呼び出し手順</title>
+ <synopsis>[string_list,err] = list_param(list_name)</synopsis>
+ </refsynopsisdiv>
+ <refsection>
+ <title>引数</title>
+ <variablelist>
+ <varlistentry>
+ <term>list_name</term>
+ <listitem>
+ <para>パラメータのリスト.このリストはinit_paramにより
+ 初期化されている必要があります.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>string_list</term>
+ <listitem>
+ <para>パラメータ名のリスト.</para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>err</term>
+ <listitem>
+ <para>エラーフラグで,list_nameがplist型でない
+ (このリストはinit_paramをコールすることにより初期化されていない)
+ 場合 %T に設定されます.
+ </para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ </refsection>
+ <refsection>
+ <title>説明</title>
+ <para>
+ パラメータリストのパラメータ名のリストを取得します.
+ エラー発生時に出力パラメータerrが存在しない場合,
+ メッセージがコンソールに出力されます.
+ </para>
+ </refsection>
+ <refsection>
+ <title>例</title>
+ <programlisting role="example"><![CDATA[
+mylist = init_param();
+mylist = add_param(mylist,'minbound',[0 0 0]);
+mylist = add_param(mylist,'maxbound',[1 1 1]);
+disp(list_param(mylist));
+ ]]></programlisting>
+ </refsection>
+ <refsection role="see also">
+ <title>参照</title>
+ <simplelist type="inline">
+ <member>
+ <link linkend="init_param">init_param</link>
+ </member>
+ <member>
+ <link linkend="set_param">set_param</link>
+ </member>
+ <member>
+ <link linkend="get_param">get_param</link>
+ </member>
+ <member>
+ <link linkend="remove_param">remove_param</link>
+ </member>
+ <member>
+ <link linkend="is_param">is_param</link>
+ </member>
+ </simplelist>
+ </refsection>
+</refentry>
diff --git a/modules/parameters/help/ja_JP/remove_param.xml b/modules/parameters/help/ja_JP/remove_param.xml
new file mode 100755
index 000000000..5e13255e6
--- /dev/null
+++ b/modules/parameters/help/ja_JP/remove_param.xml
@@ -0,0 +1,96 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
+ * Copyright (C) DIGITEO 2008-2010 - Yann COLLETTE
+ *
+ * This file must be used under the terms of the CeCILL.
+ * This source file is licensed as described in the file COPYING, which
+ * you should have received as part of this distribution. The terms
+ * are also available at
+ * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
+ *
+ -->
+<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" xmlns:scilab="http://www.scilab.org" xml:id="remove_param" xml:lang="ja">
+ <refnamediv>
+ <refname>remove_param</refname>
+ <refpurpose>パラメータリストからパラメータとその値を削除する
+ </refpurpose>
+ </refnamediv>
+ <refsynopsisdiv>
+ <title>呼び出し手順</title>
+ <synopsis>[param_list,err] = remove_param(list_name,param_name)</synopsis>
+ </refsynopsisdiv>
+ <refsection>
+ <title>引数</title>
+ <variablelist>
+ <varlistentry>
+ <term>list_name</term>
+ <listitem>
+ <para>パラメータのリスト. このリストはinit_paramをコールすることにより
+ 初期化されている必要があります.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>param_name</term>
+ <listitem>
+ <para>文字列. パラメータリストから削除するパラメータの名前.
+ このパラメータが存在しない場合,何も行われません.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>param_list</term>
+ <listitem>
+ <para>更新後のパラメータリスト.</para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>err</term>
+ <listitem>
+ <para>エラーフラグで,list_nameがplist型でない
+ (このリストはinit_paramをコールすることにより初期化されていない)
+ 場合 %T に設定されます.
+ </para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ </refsection>
+ <refsection>
+ <title>説明</title>
+ <para>この関数によりパラメータリストから
+ パラメータおよびその値を削除することが可能です.
+ エラー発生時に出力パラメータerrが存在しない場合,
+ メッセージがコンソールに出力されます.
+ </para>
+ </refsection>
+ <refsection>
+ <title>例</title>
+ <programlisting role="example"><![CDATA[
+mylist = init_param();
+mylist = add_param(mylist,'minbound',[0 0 0]);
+mylist = add_param(mylist,'maxbound',[0 0 0]);
+mylist = remove_param(mylist,'minbound');
+ ]]></programlisting>
+ </refsection>
+ <refsection role="see also">
+ <title>参照</title>
+ <simplelist type="inline">
+ <member>
+ <link linkend="init_param">init_param</link>
+ </member>
+ <member>
+ <link linkend="set_param">set_param</link>
+ </member>
+ <member>
+ <link linkend="get_param">get_param</link>
+ </member>
+ <member>
+ <link linkend="add_param">add_param</link>
+ </member>
+ <member>
+ <link linkend="is_param">is_param</link>
+ </member>
+ </simplelist>
+ </refsection>
+</refentry>
diff --git a/modules/parameters/help/ja_JP/set_param.xml b/modules/parameters/help/ja_JP/set_param.xml
new file mode 100755
index 000000000..a34fa2af7
--- /dev/null
+++ b/modules/parameters/help/ja_JP/set_param.xml
@@ -0,0 +1,99 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
+ * Copyright (C) DIGITEO 2008-2010 - Yann COLLETTE
+ *
+ * This file must be used under the terms of the CeCILL.
+ * This source file is licensed as described in the file COPYING, which
+ * you should have received as part of this distribution. The terms
+ * are also available at
+ * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
+ *
+ -->
+<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" xmlns:scilab="http://www.scilab.org" xml:id="set_param" xml:lang="ja">
+ <refnamediv>
+ <refname>set_param</refname>
+ <refpurpose>パラメータリストのパラメータの値を設定する</refpurpose>
+ </refnamediv>
+ <refsynopsisdiv>
+ <title>呼び出し手順</title>
+ <synopsis>[param_list,err] = set_param(list_name,param_name,param_value)</synopsis>
+ </refsynopsisdiv>
+ <refsection>
+ <title>引数</title>
+ <variablelist>
+ <varlistentry>
+ <term>list_name</term>
+ <listitem>
+ <para>パラメータのリスト. このリストはinit_paramをコールすることにより
+ 初期化されている必要があります.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>param_name</term>
+ <listitem>
+ <para>文字列. 値を指定するパラメータリストのパラメータ.</para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>param_value</term>
+ <listitem>
+ <para>パラメータparam_nameの値.</para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>param_list</term>
+ <listitem>
+ <para>更新後のパラメータリスト.</para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>err</term>
+ <listitem>
+ <para>エラーフラグで,list_nameがplist型でない
+ (このリストはinit_paramをコールすることにより初期化されていない)
+ 場合 %T に設定されます.
+ </para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ </refsection>
+ <refsection>
+ <title>説明</title>
+ <para>この関数は,既に存在するパラメータの値を設定します.
+ パラメータ存在しない場合,errが%Tに設定されます.
+ エラー発生時に出力パラメータerrが存在しない場合,
+ メッセージがコンソールに出力されます.
+ </para>
+ </refsection>
+ <refsection>
+ <title>例</title>
+ <programlisting role="example"><![CDATA[
+mylist = init_param();
+mylist = add_param(mylist,'minbound',[0 0 0]);
+[mylist,err] = set_param(mylist,'minbound',[1 1 1]); disp(err);
+[mylist,err] = set_param(mylist,'maxbound',[1 1 1]); disp(err);
+ ]]></programlisting>
+ </refsection>
+ <refsection role="see also">
+ <title>参照</title>
+ <simplelist type="inline">
+ <member>
+ <link linkend="init_param">init_param</link>
+ </member>
+ <member>
+ <link linkend="add_param">add_param</link>
+ </member>
+ <member>
+ <link linkend="get_param">get_param</link>
+ </member>
+ <member>
+ <link linkend="remove_param">remove_param</link>
+ </member>
+ <member>
+ <link linkend="is_param">is_param</link>
+ </member>
+ </simplelist>
+ </refsection>
+</refentry>
diff --git a/modules/parameters/help/pt_BR/addchapter.sce b/modules/parameters/help/pt_BR/addchapter.sce
new file mode 100755
index 000000000..a5c2a7329
--- /dev/null
+++ b/modules/parameters/help/pt_BR/addchapter.sce
@@ -0,0 +1,11 @@
+// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
+// Copyright (C) 2009 - DIGITEO
+//
+// This file must be used under the terms of the CeCILL.
+// This source file is licensed as described in the file COPYING, which
+// you should have received as part of this distribution. The terms
+// are also available at
+// http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
+
+add_help_chapter("Parâmetros",SCI+"/modules/parameters/help/pt_BR",%T);
+
diff --git a/modules/parameters/help/ru_RU/addchapter.sce b/modules/parameters/help/ru_RU/addchapter.sce
new file mode 100755
index 000000000..39aa796cf
--- /dev/null
+++ b/modules/parameters/help/ru_RU/addchapter.sce
@@ -0,0 +1,11 @@
+// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
+// Copyright (C) 2009 - DIGITEO
+//
+// This file must be used under the terms of the CeCILL.
+// This source file is licensed as described in the file COPYING, which
+// you should have received as part of this distribution. The terms
+// are also available at
+// http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
+
+add_help_chapter("Parameters",SCI+"/modules/parameters/help/ru_RU",%T);
+