~ubuntu-branches/ubuntu/lucid/scilab/lucid

« back to all changes in this revision

Viewing changes to modules/elementary_functions/help/fr_FR/or.xml

  • Committer: Bazaar Package Importer
  • Author(s): Sylvestre Ledru
  • Date: 2009-04-28 18:47:03 UTC
  • mfrom: (1.1.7 upstream) (4.2.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090428184703-7thddz8vtwqmxmx2
Tags: 5.1.1-4
* librefblas3-dev does not exist (yet). Thanks to Jose Ramon
* Do not stop when ocamlopt is not available on the arch 
  (ocaml-not-available.diff)
* Provide a clear error message for archs where modelicac compiler is 
  not available (modelicac-not-available.diff)
* scilab startup script moved from package scilab => scilab-bin (because of
  the ocamlopt problem, I cannot predict if modelicac will be available or
  not. Therefor, I ship usr/bin/ instead of binary per binary. This will
  also simplifies the packaging of Scilab 5.2)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<?xml version="1.0" encoding="ISO-8859-1"?>
2
 
<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="fr" xml:id="or">
 
2
<refentry version="5.0-subset Scilab" xml:id="or" xml:lang="fr"
 
3
          xmlns="http://docbook.org/ns/docbook"
 
4
          xmlns:xlink="http://www.w3.org/1999/xlink"
 
5
          xmlns:svg="http://www.w3.org/2000/svg"
 
6
          xmlns:ns5="http://www.w3.org/1999/xhtml"
 
7
          xmlns:mml="http://www.w3.org/1998/Math/MathML"
 
8
          xmlns:db="http://docbook.org/ns/docbook">
3
9
  <info>
4
10
    <pubdate>$LastChangedDate$</pubdate>
5
11
  </info>
 
12
 
6
13
  <refnamediv>
7
14
    <refname>or |</refname>
8
 
    <refpurpose> disjonction logique  </refpurpose>
 
15
 
 
16
    <refpurpose>disjonction logique</refpurpose>
9
17
  </refnamediv>
 
18
 
10
19
  <refsynopsisdiv>
11
20
    <title>S�quence d'appel</title>
 
21
 
12
22
    <synopsis>or(A), or(A,'*')
13
23
or(A,'r'), or(A,1)
14
24
 
15
25
or(A,'c'), or(A,2)
16
26
A|B</synopsis>
17
27
  </refsynopsisdiv>
 
28
 
18
29
  <refsection>
19
30
    <title>Description</title>
20
 
    <para><literal>or(A)</literal> donne la disjonction (ou) logique des �l�ments de la matrice bool�enne <literal>A</literal>. <literal>or(A)</literal> est vrai (<literal>%t</literal>) si au moins un terme de <literal>A</literal> est <literal>%t</literal>. 
21
 
  </para>
22
 
    <para><literal>y=or(A,'r')</literal> (ou <literal>y=or(A,1)</literal>) est la disjonction suivant l'indice de ligne. Chaque �l�ment du vecteur ligne <literal>y</literal> contient la disjonction de chaque colonne de <literal>x</literal> (<literal>y(j)= or(A(i,j),i=1,m)</literal>).
23
 
  </para>
24
 
    <para><literal>y=or(A,'c')</literal> (ou <literal>y=or(A,2)</literal>) est la disjonction suivant l'indice de colonne. Chaque �l�ment du vecteur colonne <literal>y</literal> contient la disjonction de chaque ligne de <literal>x</literal> 
25
 
    (<literal>y(i)= or(A(i,j),j=1,n)</literal>)).
26
 
  </para>
27
 
    <para><literal>A|B</literal> renvoie la disjonction logique �l�ment par �l�ment des matrices bool�ennes  <literal>A</literal> et <literal>B</literal>. <literal>A</literal> et <literal>B</literal> doivent �tre des matrices de m�mes dimensions ou l'une d'elles doit �tre un simple bool�en.
28
 
  </para>
29
 
    <para>
30
 
  </para>
 
31
 
 
32
    <para><literal>or(A)</literal> donne la disjonction (ou) logique des
 
33
    �l�ments de la matrice bool�enne <literal>A</literal>.
 
34
    <literal>or(A)</literal> est vrai (<literal>%t</literal>) si au moins un
 
35
    terme de <literal>A</literal> est <literal>%t</literal>.</para>
 
36
 
 
37
    <para><literal>y=or(A,'r')</literal> (ou <literal>y=or(A,1)</literal>) est
 
38
    la disjonction suivant l'indice de ligne. Chaque �l�ment du vecteur ligne
 
39
    <literal>y</literal> contient la disjonction de chaque colonne de
 
40
    <literal>x</literal> (<literal>y(j)= or(A(i,j),i=1,m)</literal>).</para>
 
41
 
 
42
    <para><literal>y=or(A,'c')</literal> (ou <literal>y=or(A,2)</literal>) est
 
43
    la disjonction suivant l'indice de colonne. Chaque �l�ment du vecteur
 
44
    colonne <literal>y</literal> contient la disjonction de chaque ligne de
 
45
    <literal>x</literal> (<literal>y(i)= or(A(i,j),j=1,n)</literal>)).</para>
 
46
 
 
47
    <para><literal>A|B</literal> renvoie la disjonction logique �l�ment par
 
48
    �l�ment des matrices bool�ennes <literal>A</literal> et
 
49
    <literal>B</literal>. <literal>A</literal> et <literal>B</literal> doivent
 
50
    �tre des matrices de m�mes dimensions ou l'une d'elles doit �tre un simple
 
51
    bool�en.</para>
31
52
  </refsection>
 
53
 
32
54
  <refsection>
33
55
    <title>Exemples</title>
34
 
    <programlisting role="example"><![CDATA[
 
56
 
 
57
    <programlisting role="example"> 
35
58
or([%t %t %f])
36
59
[%t %t %f]|[%f %t %t]
37
60
[%t %t %f]|%f
38
 
 ]]></programlisting>
 
61
 </programlisting>
39
62
  </refsection>
 
63
 
40
64
  <refsection>
41
65
    <title>Voir Aussi</title>
 
66
 
42
67
    <simplelist type="inline">
43
 
      <member>
44
 
        <link linkend="and">and</link>
45
 
      </member>
46
 
      <member>
47
 
        <link linkend="not">not</link>
48
 
      </member>
49
 
      <member>
50
 
        <link linkend="find">find</link>
51
 
      </member>
 
68
      <member><link linkend="and">and</link></member>
 
69
 
 
70
      <member><link linkend="not">not</link></member>
 
71
 
 
72
      <member><link linkend="find">find</link></member>
52
73
    </simplelist>
53
74
  </refsection>
54
75
</refentry>