changeset 24932:e178a73af18e stable

doc: move @seealso lists inside the function doc string block * intersect.m, rectangle.m, svds.m: Move @seealso lists inside the function @deftypefn block.
author Mike Miller <mtmiller@octave.org>
date Mon, 19 Mar 2018 18:18:24 -0700
parents 16155531bda4
children 75a748cb08a6
files scripts/plot/draw/rectangle.m scripts/set/intersect.m scripts/sparse/svds.m
diffstat 3 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/plot/draw/rectangle.m	Mon Mar 19 14:36:58 2018 -0700
+++ b/scripts/plot/draw/rectangle.m	Mon Mar 19 18:18:24 2018 -0700
@@ -52,8 +52,8 @@
 ##
 ## The optional return value @var{h} is a graphics handle to the created
 ## rectangle object.
+## @seealso{patch, line, cylinder, ellipsoid, sphere}
 ## @end deftypefn
-## @seealso{patch, line, cylinder, ellipsoid, sphere}
 
 function h = rectangle (varargin)
 
--- a/scripts/set/intersect.m	Mon Mar 19 14:36:58 2018 -0700
+++ b/scripts/set/intersect.m	Mon Mar 19 18:18:24 2018 -0700
@@ -35,8 +35,8 @@
 ## If requested, return index vectors @var{ia} and @var{ib} such that
 ## @code{@var{c} = @var{a}(@var{ia})} and @code{@var{c} = @var{b}(@var{ib})}.
 ##
+## @seealso{unique, union, setdiff, setxor, ismember}
 ## @end deftypefn
-## @seealso{unique, union, setdiff, setxor, ismember}
 
 function [c, ia, ib] = intersect (a, b, varargin)
 
--- a/scripts/sparse/svds.m	Mon Mar 19 14:36:58 2018 -0700
+++ b/scripts/sparse/svds.m	Mon Mar 19 18:18:24 2018 -0700
@@ -88,8 +88,8 @@
 ## @code{svds} is best for finding only a few singular values from a large
 ## sparse matrix.  Otherwise, @code{svd (full (@var{A}))} will likely be more
 ## efficient.
+## @seealso{svd, eigs}
 ## @end deftypefn
-## @seealso{svd, eigs}
 
 function [u, s, v, flag] = svds (A, k, sigma, opts)