~ubuntu-branches/ubuntu/karmic/scilab/karmic

« back to all changes in this revision

Viewing changes to man/metanet/nodes_degrees.man

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2002-03-21 16:57:43 UTC
  • Revision ID: james.westby@ubuntu.com-20020321165743-e9mv12c1tb1plztg
Tags: upstream-2.6
ImportĀ upstreamĀ versionĀ 2.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
.TH nodes_degrees 1 "September 1996" "Scilab Group" "Scilab function"
 
2
.so ../sci.an
 
3
.SH NAME
 
4
nodes_degrees - degrees of the nodes of a graph
 
5
.SH CALLING SEQUENCE
 
6
.nf
 
7
[outdegree,indegree] = graph_degree(g)
 
8
.fi
 
9
.SH PARAMETERS
 
10
.TP 2
 
11
g
 
12
: graph list
 
13
.TP 10
 
14
outdegree
 
15
: row vector of the out degrees of the nodes
 
16
.TP 9
 
17
indegree
 
18
: row vector of the in degrees of the nodes
 
19
.SH DESCRIPTION
 
20
\fVnodes_degrees\fR returns the 2 row vectors of the out and in degrees of the 
 
21
nodes of the graph \fVg\fR.
 
22
.SH EXAMPLE
 
23
.nf
 
24
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];
 
25
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];
 
26
g=make_graph('foo',1,17,ta,he);
 
27
g('node_x')=[283 163 63 57 164 164 273 271 339 384 504 513 439 623 631 757 642];
 
28
g('node_y')=[59 133 223 318 227 319 221 324 432 141 209 319 428 443 187 151 301];
 
29
show_graph(g);
 
30
[outdegree,indegree]=nodes_degrees(g)
 
31
.fi
 
32
.SH SEE ALSO
 
33
adj_lists