changeset 12294:e6a2008b14b8 release-3-4-x

Add accumdim function to documentation.c
author Rik <octave@nomad.inbox5.com>
date Sat, 29 Jan 2011 21:58:40 -0800
parents d6c70e64882c
children 2b7aa04f6b53
files doc/ChangeLog doc/interpreter/arith.txi scripts/ChangeLog scripts/general/accumarray.m
diffstat 4 files changed, 11 insertions(+), 0 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/arith.txi: Add accumdim function to documentation.
+
 2011-01-29  Rik  <octave@nomad.inbox5.com>
 
 	* interpreter/set.txi: Add powerset function to documentation.
--- a/doc/interpreter/arith.txi
+++ b/doc/interpreter/arith.txi
@@ -191,6 +191,8 @@
 
 @DOCSTRING(accumarray)
 
+@DOCSTRING(accumdim)
+
 @node Utility Functions
 @section Utility Functions
 
--- a/scripts/ChangeLog
+++ b/scripts/ChangeLog
@@ -1,3 +1,7 @@
+2010-01-29  Rik  <octave@nomad.inbox5.com>
+
+	* general/accumarray.m: Add seealso reference to accumdim.
+
 2010-01-29  Rik  <octave@nomad.inbox5.com>
 
 	* set/powerset.m: Improve docstring.
--- a/scripts/general/accumarray.m
+++ b/scripts/general/accumarray.m
@@ -62,6 +62,7 @@
 ## Note that for general reduction function the interpreter overhead can play a
 ## major part and it may be more efficient to do multiple accumarray calls and
 ## compute the results in a vectorized manner.
+## @seealso{accumdim}
 ## @end deftypefn
 
 function A = accumarray (subs, vals, sz = [], func = [], fillval = [], issparse = [])