Mercurial > hg > octave-thorsten
changeset 12293:d6c70e64882c release-3-4-x
Add powerset function to documentation.
author | Rik <octave@nomad.inbox5.com> |
---|---|
date | Sat, 29 Jan 2011 21:47:56 -0800 |
parents | 76617b82cf4c |
children | e6a2008b14b8 |
files | doc/ChangeLog doc/interpreter/set.txi scripts/ChangeLog scripts/set/powerset.m |
diffstat | 4 files changed, 11 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,3 +1,7 @@ +2011-01-29 Rik <octave@nomad.inbox5.com> + + * interpreter/set.txi: Add powerset function to documentation. + 2011-01-29 Rik <octave@nomad.inbox5.com> * interpreter/system.txi: Add S_ISSOCK function to documentation.
--- a/doc/interpreter/set.txi +++ b/doc/interpreter/set.txi @@ -55,3 +55,5 @@ @DOCSTRING(setdiff) @DOCSTRING(setxor) + +@DOCSTRING(powerset)
--- a/scripts/ChangeLog +++ b/scripts/ChangeLog @@ -1,3 +1,7 @@ +2010-01-29 Rik <octave@nomad.inbox5.com> + + * set/powerset.m: Improve docstring. + 2010-01-29 Rik <octave@nomad.inbox5.com> * miscellaneous/copyfile.m, miscellaneous/movefile.m,
--- a/scripts/set/powerset.m +++ b/scripts/set/powerset.m @@ -20,7 +20,7 @@ ## @deftypefn {Function File} {} powerset (@var{a}) ## @deftypefnx {Function File} {} powerset (@var{a}, "rows") ## -## Return the cell array of all subsets of the set @var{a}. +## Return a cell array containing all subsets of the set @var{a}. ## ## @end deftypefn ## @seealso{unique, union, setxor, setdiff, ismember}