changeset 10712:6a5a0c9df5d7

union.m: Remove seealso reference to deprecated function.
author Rik <octave@nomad.inbox5.com>
date Wed, 16 Jun 2010 21:19:23 -0700
parents fbd7843974fa
children 0e05ed9f2a62
files doc/ChangeLog doc/interpreter/set.txi scripts/ChangeLog scripts/set/union.m
diffstat 4 files changed, 10 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/doc/ChangeLog
+++ b/doc/ChangeLog
@@ -1,3 +1,7 @@
+2010-06-16  Rik <octave@nomad.inbox5.com>
+
+        * interpreter/set.txi: Remove reference to deprecated function.
+
 2010-06-16  Rik <octave@nomad.inbox5.com>
 
         * interpreter/expr.txi, interpreter/func.txi, interpreter/install.txi, 
--- a/doc/interpreter/set.txi
+++ b/doc/interpreter/set.txi
@@ -33,7 +33,7 @@
 @section Set Operations
 
 Octave supports the basic set operations.  That is, Octave can compute
-the union, intersection, complement, and difference of two sets.
+the union, intersection, and difference of two sets.
 Octave also supports the @emph{Exclusive Or} set operation, and
 membership determination.  The functions for set operations all work in
 pretty much the same way.  As an example, assume that @code{x} and
@@ -52,8 +52,6 @@
 
 @DOCSTRING(intersect)
 
-@DOCSTRING(complement)
-
 @DOCSTRING(setdiff)
 
 @DOCSTRING(setxor)
--- a/scripts/ChangeLog
+++ b/scripts/ChangeLog
@@ -1,3 +1,7 @@
+2010-06-16  Rik <octave@nomad.inbox5.com>
+
+        * set/union.m: Remove seealso reference to deprecated function.
+
 2010-06-16  Rik <octave@nomad.inbox5.com>
 
         * @ftp/dir.m, @ftp/ftp.m, @ftp/mget.m, @ftp/mput.m, @ftp/rename.m, 
--- a/scripts/set/union.m
+++ b/scripts/set/union.m
@@ -49,7 +49,7 @@
 ## Return index vectors @var{ia} and @var{ib} such that @code{a(ia)} and @code{b(ib)} are
 ## disjoint sets whose union is @var{c}.
 ## 
-## @seealso{intersect, complement, unique}
+## @seealso{intersect, setdiff, unique}
 ## @end deftypefn
 
 ## Author: jwe