summaryrefslogtreecommitdiff
path: root/modules/boolean/help
diff options
context:
space:
mode:
authorShashank2017-05-29 12:40:26 +0530
committerShashank2017-05-29 12:40:26 +0530
commit0345245e860375a32c9a437c4a9d9cae807134e9 (patch)
treead51ecbfa7bcd3cc5f09834f1bb8c08feaa526a4 /modules/boolean/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/boolean/help')
-rwxr-xr-xmodules/boolean/help/en_US/addchapter.sce11
-rwxr-xr-xmodules/boolean/help/en_US/bool2s.xml63
-rwxr-xr-xmodules/boolean/help/fr_FR/addchapter.sce11
-rwxr-xr-xmodules/boolean/help/fr_FR/bool2s.xml65
-rwxr-xr-xmodules/boolean/help/ja_JP/addchapter.sce11
-rwxr-xr-xmodules/boolean/help/ja_JP/bool2s.xml63
-rwxr-xr-xmodules/boolean/help/pt_BR/addchapter.sce11
-rwxr-xr-xmodules/boolean/help/pt_BR/bool2s.xml69
-rwxr-xr-xmodules/boolean/help/ru_RU/addchapter.sce11
9 files changed, 315 insertions, 0 deletions
diff --git a/modules/boolean/help/en_US/addchapter.sce b/modules/boolean/help/en_US/addchapter.sce
new file mode 100755
index 000000000..d2625dd5d
--- /dev/null
+++ b/modules/boolean/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("Boolean",SCI+"/modules/boolean/help/en_US",%T);
+
diff --git a/modules/boolean/help/en_US/bool2s.xml b/modules/boolean/help/en_US/bool2s.xml
new file mode 100755
index 000000000..c5469bc56
--- /dev/null
+++ b/modules/boolean/help/en_US/bool2s.xml
@@ -0,0 +1,63 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
+ * Copyright (C) INRIA
+ *
+ * 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="bool2s">
+ <refnamediv>
+ <refname>bool2s</refname>
+ <refpurpose>convert boolean matrix to a zero one matrix. </refpurpose>
+ </refnamediv>
+ <refsynopsisdiv>
+ <title>Calling Sequence</title>
+ <synopsis>bool2s(x)</synopsis>
+ </refsynopsisdiv>
+ <refsection>
+ <title>Arguments</title>
+ <variablelist>
+ <varlistentry>
+ <term>x</term>
+ <listitem>
+ <para>a boolean vector or a boolean matrix or a constant matrix</para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ </refsection>
+ <refsection>
+ <title>Description</title>
+ <para>
+ If <literal>x</literal> is a boolean matrix,
+ <literal>bool2s(x)</literal> returns the matrix where "true" values are replaced by 1
+ and "false" value by 0.
+ </para>
+ <para>
+ If <literal>x</literal> is a "standard" matrix,
+ <literal>bool2s(x)</literal> returns the matrix where non-zero values are replaced by 1.
+ </para>
+ </refsection>
+ <refsection>
+ <title>Examples</title>
+ <programlisting role="example"><![CDATA[
+bool2s([%t %t %f %t])
+bool2s([2.3 0 10 -1])
+ ]]></programlisting>
+ </refsection>
+ <refsection role="see also">
+ <title>See Also</title>
+ <simplelist type="inline">
+ <member>
+ <link linkend="boolean">boolean</link>
+ </member>
+ <member>
+ <link linkend="find">find</link>
+ </member>
+ </simplelist>
+ </refsection>
+</refentry>
diff --git a/modules/boolean/help/fr_FR/addchapter.sce b/modules/boolean/help/fr_FR/addchapter.sce
new file mode 100755
index 000000000..caf348d5e
--- /dev/null
+++ b/modules/boolean/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("Booléens",SCI+"/modules/boolean/help/fr_FR",%T);
+
diff --git a/modules/boolean/help/fr_FR/bool2s.xml b/modules/boolean/help/fr_FR/bool2s.xml
new file mode 100755
index 000000000..b26fbcff2
--- /dev/null
+++ b/modules/boolean/help/fr_FR/bool2s.xml
@@ -0,0 +1,65 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
+ * Copyright (C) INRIA
+ *
+ * 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="fr" xml:id="bool2s">
+ <refnamediv>
+ <refname>bool2s</refname>
+ <refpurpose>convertit une matrice booléenne en une matrice 0-1 </refpurpose>
+ </refnamediv>
+ <refsynopsisdiv>
+ <title>Séquence d'appel</title>
+ <synopsis>bool2s(x)</synopsis>
+ </refsynopsisdiv>
+ <refsection>
+ <title>Paramètres</title>
+ <variablelist>
+ <varlistentry>
+ <term>x </term>
+ <listitem>
+ <para>matrice réelle, complexe ou booléenne
+ </para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ </refsection>
+ <refsection>
+ <title>Description</title>
+ <para>
+ Si <literal>x</literal> est une matrice booléenne,
+ <literal>bool2s(x)</literal> renvoie une matrice où les valeurs %T (true=vrai) sont remplacées par des 1 et les %F (faux) par des 0.
+ </para>
+ <para>
+ Si <literal>x</literal> n'est pas une matrice booléenne,
+ <literal>bool2s(x)</literal> renvoie une matrice où les valeurs non-nulles sont remplacées par des 1.
+ </para>
+ <para>
+ </para>
+ </refsection>
+ <refsection>
+ <title>Exemples</title>
+ <programlisting role="example"><![CDATA[
+bool2s([%t %t %f %t])
+bool2s([2.3 0 10 -1])
+ ]]></programlisting>
+ </refsection>
+ <refsection role="see also">
+ <title>Voir aussi</title>
+ <simplelist type="inline">
+ <member>
+ <link linkend="boolean">boolean</link>
+ </member>
+ <member>
+ <link linkend="find">find</link>
+ </member>
+ </simplelist>
+ </refsection>
+</refentry>
diff --git a/modules/boolean/help/ja_JP/addchapter.sce b/modules/boolean/help/ja_JP/addchapter.sce
new file mode 100755
index 000000000..369a30de2
--- /dev/null
+++ b/modules/boolean/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("Boolean",SCI+"/modules/boolean/help/ja_JP",%T);
+
diff --git a/modules/boolean/help/ja_JP/bool2s.xml b/modules/boolean/help/ja_JP/bool2s.xml
new file mode 100755
index 000000000..8eda8d8be
--- /dev/null
+++ b/modules/boolean/help/ja_JP/bool2s.xml
@@ -0,0 +1,63 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
+ * Copyright (C) INRIA
+ *
+ * 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="bool2s">
+ <refnamediv>
+ <refname>bool2s</refname>
+ <refpurpose>論理値行列を0,1を値とする行列に変換する. </refpurpose>
+ </refnamediv>
+ <refsynopsisdiv>
+ <title>呼び出し手順</title>
+ <synopsis>bool2s(x)</synopsis>
+ </refsynopsisdiv>
+ <refsection>
+ <title>パラメータ</title>
+ <variablelist>
+ <varlistentry>
+ <term>x</term>
+ <listitem>
+ <para>論理値ベクトルまたは論理値行列または定数行列 </para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ </refsection>
+ <refsection>
+ <title>説明</title>
+ <para>
+ <literal>x</literal> が論理値行列の場合,
+ <literal>bool2s(x)</literal> は"true"値を1, "false"値を0で置換した
+ 行列を返します.
+ </para>
+ <para>
+ <literal>x</literal> が "標準" 行列の場合,
+ <literal>bool2s(x)</literal> は非ゼロ値を 1 に置換した行列を返します.
+ </para>
+ </refsection>
+ <refsection>
+ <title>例</title>
+ <programlisting role="example"><![CDATA[
+bool2s([%t %t %f %t])
+bool2s([2.3 0 10 -1])
+ ]]></programlisting>
+ </refsection>
+ <refsection role="see also">
+ <title>参照</title>
+ <simplelist type="inline">
+ <member>
+ <link linkend="boolean">boolean</link>
+ </member>
+ <member>
+ <link linkend="find">find</link>
+ </member>
+ </simplelist>
+ </refsection>
+</refentry>
diff --git a/modules/boolean/help/pt_BR/addchapter.sce b/modules/boolean/help/pt_BR/addchapter.sce
new file mode 100755
index 000000000..36d320e63
--- /dev/null
+++ b/modules/boolean/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("Booleanos",SCI+"/modules/boolean/help/pt_BR",%T);
+
diff --git a/modules/boolean/help/pt_BR/bool2s.xml b/modules/boolean/help/pt_BR/bool2s.xml
new file mode 100755
index 000000000..5adfbeca0
--- /dev/null
+++ b/modules/boolean/help/pt_BR/bool2s.xml
@@ -0,0 +1,69 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+ * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
+ * Copyright (C) INRIA
+ *
+ * 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:ns5="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="bool2s" xml:lang="en">
+ <refnamediv>
+ <refname>bool2s</refname>
+ <refpurpose>converte uma matriz de valores booleanos para uma matriz de
+ valores 0 ou 1
+ </refpurpose>
+ </refnamediv>
+ <refsynopsisdiv>
+ <title>Seqncia de Chamamento</title>
+ <synopsis>bool2s(x)</synopsis>
+ </refsynopsisdiv>
+ <refsection>
+ <title>Parmetros</title>
+ <variablelist>
+ <varlistentry>
+ <term>x</term>
+ <listitem>
+ <para>um vetor ou matriz de valores booleanos ou uma matriz
+ constante
+ </para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ </refsection>
+ <refsection>
+ <title>Descrio</title>
+ <para>
+ Se <literal>x</literal> uma matriz de valores booleanos,
+ <literal>bool2s(x)</literal> retorna uma matriz onde os valores "true"
+ ("verdadeiro") so substituidos por 1 e os valores "false" ("falso") so
+ substituidos por 0.
+ </para>
+ <para>
+ Se <literal>x</literal> uma matriz "padro",
+ <literal>bool2s(x)</literal> retorna uma matriz onde os valores no-nulos
+ so substitudos por 1.
+ </para>
+ </refsection>
+ <refsection>
+ <title>Exemplos</title>
+ <programlisting role="example"><![CDATA[
+bool2s([%t %t %f %t])
+bool2s([2.3 0 10 -1])
+ ]]></programlisting>
+ </refsection>
+ <refsection role="see also">
+ <title>Ver Tambm</title>
+ <simplelist type="inline">
+ <member>
+ <link linkend="boolean">boolean</link>
+ </member>
+ <member>
+ <link linkend="find">find</link>
+ </member>
+ </simplelist>
+ </refsection>
+</refentry>
diff --git a/modules/boolean/help/ru_RU/addchapter.sce b/modules/boolean/help/ru_RU/addchapter.sce
new file mode 100755
index 000000000..410b1b14b
--- /dev/null
+++ b/modules/boolean/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("Boolean",SCI+"/modules/boolean/help/ru_RU",%T);
+