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

« back to all changes in this revision

Viewing changes to man/fr/metanet/strong_con_nodes.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>strong_con_nodes  </TITLE>
 
6
  <TYPE>Scilab function  </TYPE>
 
7
  <DATE>September 1995  </DATE>
 
8
  <SHORT_DESCRIPTION name="strong_con_nodes"> ensemble de sommets d&apos;une composante fortement connexe  </SHORT_DESCRIPTION>
 
9
  <CALLING_SEQUENCE>
 
10
  <CALLING_SEQUENCE_ITEM>ns = strong_con_nodes(i,g)  </CALLING_SEQUENCE_ITEM>
 
11
  </CALLING_SEQUENCE>
 
12
  <PARAM>
 
13
 <PARAM_INDENT>
 
14
  <PARAM_ITEM>
 
15
  <PARAM_NAME>i  </PARAM_NAME>
 
16
  <PARAM_DESCRIPTION>
 
17
  <SP>
 
18
    : entier, num�ro de la composante fortement connexe
 
19
</SP>
 
20
  </PARAM_DESCRIPTION> 
 
21
  </PARAM_ITEM>
 
22
  <PARAM_ITEM>
 
23
  <PARAM_NAME>g  </PARAM_NAME>
 
24
  <PARAM_DESCRIPTION>
 
25
  <SP>
 
26
    : graphe (liste)
 
27
</SP>
 
28
  </PARAM_DESCRIPTION> 
 
29
  </PARAM_ITEM>
 
30
  <PARAM_ITEM>
 
31
  <PARAM_NAME>ns  </PARAM_NAME>
 
32
  <PARAM_DESCRIPTION>
 
33
  <SP>
 
34
    : vecteur ligne, num�ros des sommets de la composante fortement connexe
 
35
</SP>
 
36
  </PARAM_DESCRIPTION> 
 
37
  </PARAM_ITEM>
 
38
 </PARAM_INDENT>
 
39
  </PARAM>
 
40
  <DESCRIPTION>
 
41
  <P>
 
42
    <VERB>strong_con_nodes</VERB> renvoie le vecteur ligne <VERB>ns</VERB> des num�ros des
 
43
    sommets appartenant � la composante fortement connexe num�ro <VERB>i</VERB>.
 
44
  </P>
 
45
  </DESCRIPTION>
 
46
  <EXAMPLE><![CDATA[
 
47
ta=[1 1 2 2 2 3 4 4 5 6 6 6 7 7 7 8 9 10 12 12 13 13 13 14 15];
 
48
he=[2 6 3 4 5 1 3 5 1 7 10 11 5 8 9 5 8 11 10 11 9 11 15 13 14];
 
49
g=make_graph('foo',1,15,ta,he);
 
50
g('node_x')=[197 191 106 194 296 305 305 418 422 432 552 550 549 416 548]; 
 
51
g('node_y')=[76 181 276 278 276 83 174 281 177 86 175 90 290 397 399];
 
52
show_graph(g);
 
53
ncomp=strong_con_nodes(3,g);
 
54
n=g('node_number');
 
55
nodecolor=0*ones(1,n); nodecolor(ncomp)=11*ones(ncomp);
 
56
g('node_color')=nodecolor;
 
57
nodediam=20*ones(1,n); nodediam(ncomp)=40*ones(ncomp);
 
58
g('node_diam')=nodediam;
 
59
x_message('Ensemble des sommets de la composante fortement connexe num�ro 3');
 
60
show_graph(g);
 
61
 ]]></EXAMPLE>
 
62
  <SEE_ALSO>
 
63
    <SEE_ALSO_ITEM> <LINK>connex</LINK> </SEE_ALSO_ITEM>     <SEE_ALSO_ITEM> <LINK>con_nodes</LINK> </SEE_ALSO_ITEM>     <SEE_ALSO_ITEM> <LINK>strong_connex</LINK> </SEE_ALSO_ITEM>
 
64
  </SEE_ALSO>
 
65
</MAN>