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

« back to all changes in this revision

Viewing changes to man/metanet/nodes_2_path.man

  • 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
 
.TH nodes_2_path 1 "September 1995" "Scilab Group" "Scilab function"
2
 
.so ../sci.an
3
 
.SH NAME
4
 
nodes_2_path - path from a set of nodes
5
 
.SH CALLING SEQUENCE
6
 
.nf
7
 
p = nodes_2_path(ns,g)
8
 
.fi
9
 
.SH PARAMETERS
10
 
.TP 3
11
 
ns
12
 
: row vector of integer numbers of the set of nodes
13
 
.TP 2
14
 
g
15
 
: graph list
16
 
.TP 2
17
 
p
18
 
: row vector of integer numbers of the arcs of the path if it exists
19
 
.SH DESCRIPTION
20
 
\fVnodes_2_path\fR returns the path \fVp\fR corresponding to the node
21
 
sequence \fVns\fR given by its node numbers if it exists ; it returns
22
 
the empty vector \fV[]\fR otherwise.
23
 
.SH EXAMPLE
24
 
.nf
25
 
ta=[1 1 2 2 2 3 4 5 5 7 8 8 9 10 10 10 11 12 13 13 13 14 15 16 16 17 17];
26
 
he=[2 10 3 5 7 4 2 4 6 8 6 9 7 7 11 15 12 13 9 10 14 11 16 1 17 14 15];
27
 
g=make_graph('foo',1,17,ta,he);
28
 
g('node_x')=[283 163 63 57 164 164 273 271 339 384 504 513 439 623 631 757 642];
29
 
g('node_y')=[59 133 223 318 227 319 221 324 432 141 209 319 428 443 187 151 301];
30
 
show_graph(g);
31
 
ns=[1 10 15 16 17 14 11 12 13 9 7 8 6];
32
 
g1=g; nodecolor=1*ones(g('node_x')); nodecolor(ns)=11*ones(ns);
33
 
g1('node_color')=nodecolor;
34
 
show_graph(g1); show_nodes(ns);
35
 
p=nodes_2_path(ns,g);
36
 
g1=g; edgecolor=1*ones(ta); edgecolor(p)=11*ones(p);
37
 
g1('edge_color')=edgecolor;
38
 
show_graph(g1); show_arcs(p);
39
 
show_nodes(ns,'sup');
40
 
.fi
41
 
.SH SEE ALSO
42
 
path_2_nodes