~ubuntu-branches/ubuntu/hoary/scilab/hoary

« back to all changes in this revision

Viewing changes to man/fr/elementary/tril.xml

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2005-01-09 22:58:21 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050109225821-473xr8vhgugxxx5j
Tags: 3.0-12
changed configure.in to build scilab's own malloc.o, closes: #255869

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> 
 
2
<!DOCTYPE MAN SYSTEM "../../manrev.dtd">
 
3
<MAN>
 
4
  <LANGUAGE>fr</LANGUAGE>
 
5
  <TITLE>tril  </TITLE>
 
6
  <TYPE>Scilab Function  </TYPE>
 
7
  <DATE>April 1993  </DATE>
 
8
  <SHORT_DESCRIPTION name="tril"> partie triangulaire inf�rieure d&apos;une matrice  </SHORT_DESCRIPTION>
 
9
  <CALLING_SEQUENCE>
 
10
  <CALLING_SEQUENCE_ITEM>tril(x [,k])  </CALLING_SEQUENCE_ITEM>
 
11
  </CALLING_SEQUENCE>
 
12
  <PARAM>
 
13
 <PARAM_INDENT>
 
14
  <PARAM_ITEM>
 
15
  <PARAM_NAME>x  </PARAM_NAME>
 
16
  <PARAM_DESCRIPTION>
 
17
  <SP>
 
18
    : matrice de tout type
 
19
</SP>
 
20
  </PARAM_DESCRIPTION> 
 
21
  </PARAM_ITEM>
 
22
  <PARAM_ITEM>
 
23
  <PARAM_NAME>k  </PARAM_NAME>
 
24
  <PARAM_DESCRIPTION>
 
25
  <SP>
 
26
    : entier (0 par d�faut)
 
27
</SP>
 
28
  </PARAM_DESCRIPTION> 
 
29
  </PARAM_ITEM>
 
30
 </PARAM_INDENT>
 
31
  </PARAM>
 
32
  <DESCRIPTION>
 
33
  <P>
 
34
    Partie triangulaire inf�rieure d&apos;une matrice.
 
35
    <VERB>tril(x,k)</VERB> est compos�e des termes sous une diagonale :
 
36
    k&gt;0 (diagonale sup�rieure) et k&lt;0 (diagonale sous la diagonale principale).
 
37
  </P>
 
38
  </DESCRIPTION>
 
39
  <EXAMPLE><![CDATA[
 
40
s=poly(0,'s');
 
41
tril([s,s;s,1])
 
42
tril([1/s,1/s;1/s,1])
 
43
 ]]></EXAMPLE>
 
44
  <SEE_ALSO>
 
45
    <SEE_ALSO_ITEM> <LINK>triu</LINK> </SEE_ALSO_ITEM>     <SEE_ALSO_ITEM> <LINK>ones</LINK> </SEE_ALSO_ITEM>     <SEE_ALSO_ITEM> <LINK>eye</LINK> </SEE_ALSO_ITEM>     <SEE_ALSO_ITEM> <LINK>diag</LINK> </SEE_ALSO_ITEM>
 
46
  </SEE_ALSO>
 
47
</MAN>