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

« back to all changes in this revision

Viewing changes to man/metanet/show_arcs.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 show_arcs 1 "September 1995" "Scilab Group" "Scilab function"
2
 
.so ../sci.an
3
 
.SH NAME
4
 
show_arcs - highlights a set of arcs
5
 
.SH CALLING SEQUENCE
6
 
.nf
7
 
show_arcs(p,[sup])
8
 
.fi
9
 
.SH PARAMETERS
10
 
.TP 2
11
 
p
12
 
: row vector of arc numbers (directed graph) or edge numbers (undirected graph)
13
 
.TP 4
14
 
sup
15
 
: string, superposition flag
16
 
.SH DESCRIPTION
17
 
\fVshow_arcs\fR highlights the set of arcs or edges \fVp\fR of the
18
 
displayed graph in the current Metanet window.
19
 
If the optional argument \fVsup\fR is equal to the string 'sup',
20
 
the highlighting is superposed on the previous one.
21
 
 
22
 
By default, this function works in asynchronous mode (see \fVmetanet_sync\fR).
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
 
t=min_weight_tree(1,g); g1=g; ma=edge_number(g1);
32
 
edgecolor=1*ones(1,ma); g1('edge_color')=edgecolor;
33
 
edgewidth=1*ones(1,ma); edgewidth(t)=4*ones(t); g1('edge_width')=edgewidth;
34
 
for i=8:12,
35
 
 edgecolor(t)=i*ones(t); g1('edge_color')=edgecolor;
36
 
 unix('sleep 2'); show_graph(g1);
37
 
 show_arcs(t);
38
 
end;
39
 
.fi
40
 
.SH SEE ALSO
41
 
metanet_sync, show_nodes