Mercurial > hg > octave-lyh
comparison scripts/sparse/treeplot.m @ 9051:1bf0ce0930be
Grammar check TexInfo in all .m files
Cleanup documentation sources to follow a few consistent rules.
Spellcheck was NOT done. (but will be in another changeset)
author | Rik <rdrider0-list@yahoo.com> |
---|---|
date | Fri, 27 Mar 2009 22:31:03 -0700 |
parents | eb63fbe60fab |
children | 95c3e38098bf |
comparison
equal
deleted
inserted
replaced
9044:656ad518f385 | 9051:1bf0ce0930be |
---|---|
17 ## <http://www.gnu.org/licenses/>. | 17 ## <http://www.gnu.org/licenses/>. |
18 | 18 |
19 ## -*- texinfo -*- | 19 ## -*- texinfo -*- |
20 ## @deftypefn {Function File} {} treeplot (@var{tree}) | 20 ## @deftypefn {Function File} {} treeplot (@var{tree}) |
21 ## @deftypefnx {Function File} {} treeplot (@var{tree}, @var{line_style}, @var{edge_style}) | 21 ## @deftypefnx {Function File} {} treeplot (@var{tree}, @var{line_style}, @var{edge_style}) |
22 ## Produces a graph of tree or forest. The first argument is vector of | 22 ## Produces a graph of tree or forest. The first argument is vector of |
23 ## predecessors, optional parameters @var{line_style} and @var{edge_style} | 23 ## predecessors, optional parameters @var{line_style} and @var{edge_style} |
24 ## define the output style. The complexity of the algorithm is O(n) in | 24 ## define the output style. The complexity of the algorithm is O(n) in |
25 ## terms of is time and memory requirements. | 25 ## terms of is time and memory requirements. |
26 ## @seealso{etreeplot, gplot} | 26 ## @seealso{etreeplot, gplot} |
27 ## @end deftypefn | 27 ## @end deftypefn |
28 | 28 |
29 function treeplot (tree, node_s, edge_s) | 29 function treeplot (tree, node_s, edge_s) |