# HG changeset patch # User jwe # Date 1143754493 0 # Node ID 82247c2a7520debb314faf57416d284808b899cf # Parent 7fc5276c8f2f571d44c50dd081abfec4241d8ada [project @ 2006-03-30 21:34:52 by jwe] diff --git a/src/ChangeLog b/src/ChangeLog --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2006-03-30 Bill Denney + + * data.cc: Include numel in @seealso. + 2006-03-30 David Bateman * DLD-FUNCTIONS/fftw_wisdom.cc: Don't attempt to save wisdom to diff --git a/src/data.cc b/src/data.cc --- a/src/data.cc +++ b/src/data.cc @@ -969,6 +969,7 @@ "-*- texinfo -*-\n\ @deftypefn {Built-in Function} {} numel (@var{a})\n\ Returns the number of elements in the object @var{a}.\n\ +@seealso{size}\n\ @end deftypefn") { octave_value retval; @@ -1022,6 +1023,7 @@ \n\ @noindent\n\ returns the number of columns in the given matrix.\n\ +@seealso{numel}\n\ @end deftypefn") { octave_value_list retval; @@ -1118,7 +1120,7 @@ "-*- texinfo -*-\n\ @deftypefn {Built-in Function} {} rows (@var{a})\n\ Return the number of rows of @var{a}.\n\ -@seealso{size, columns, length, isscalar, isvector, ismatrix}\n\ +@seealso{size, numel, columns, length, isscalar, isvector, ismatrix}\n\ @end deftypefn") { octave_value retval; @@ -1135,7 +1137,7 @@ "-*- texinfo -*-\n\ @deftypefn {Built-in Function} {} columns (@var{a})\n\ Return the number of columns of @var{a}.\n\ -@seealso{size, rows, length, isscalar, isvector, and ismatrix}\n\ +@seealso{size, numel, rows, length, isscalar, isvector, and ismatrix}\n\ @end deftypefn") { octave_value retval;