# HG changeset patch # User Mike Miller # Date 1521508704 25200 # Node ID e178a73af18ee6984b77bf6e395cc08a659d3080 # Parent 16155531bda4b01c659d00a37e24026eede565da doc: move @seealso lists inside the function doc string block * intersect.m, rectangle.m, svds.m: Move @seealso lists inside the function @deftypefn block. diff -r 16155531bda4 -r e178a73af18e scripts/plot/draw/rectangle.m --- 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) diff -r 16155531bda4 -r e178a73af18e scripts/set/intersect.m --- 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) diff -r 16155531bda4 -r e178a73af18e scripts/sparse/svds.m --- 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)