comparison scripts/sparse/etreeplot.m @ 5642:2618a0750ae6

[project @ 2006-03-06 21:26:48 by jwe]
author jwe
date Mon, 06 Mar 2006 21:26:54 +0000
parents 6ada1581e8b4
children 93c65f2a5668
comparison
equal deleted inserted replaced
5641:eb998631a4aa 5642:2618a0750ae6
20 ## @deftypefnx {Function File} {} etreeplot (@var{tree}, @var{node_style}, @var{edge_style}) 20 ## @deftypefnx {Function File} {} etreeplot (@var{tree}, @var{node_style}, @var{edge_style})
21 ## Plot the elimination tree of the matrix @var{s} or 21 ## Plot the elimination tree of the matrix @var{s} or
22 ## @code{@var{s}+@var{s}'} if @var{s} in non-symmetric. The optional 22 ## @code{@var{s}+@var{s}'} if @var{s} in non-symmetric. The optional
23 ## parameters @var{line_style} and @var{edge_style} define the output 23 ## parameters @var{line_style} and @var{edge_style} define the output
24 ## style. 24 ## style.
25 ## @seealso{treeplot, gplot}
25 ## @end deftypefn 26 ## @end deftypefn
26 ## @seealso{treeplot,gplot}
27 27
28 function etreeplot (s, varargin) 28 function etreeplot (s, varargin)
29 treeplot (etree (s+s'), varargin{:}); 29 treeplot (etree (s+s'), varargin{:});
30 endfunction 30 endfunction