diff src/DLD-FUNCTIONS/sparse.cc @ 5642:2618a0750ae6

[project @ 2006-03-06 21:26:48 by jwe]
author jwe
date Mon, 06 Mar 2006 21:26:54 +0000
parents 7171d19706df
children 2b20d1707f29
line wrap: on
line diff
--- a/src/DLD-FUNCTIONS/sparse.cc	Sat Mar 04 22:21:01 2006 +0000
+++ b/src/DLD-FUNCTIONS/sparse.cc	Mon Mar 06 21:26:54 2006 +0000
@@ -620,8 +620,8 @@
 @deftypefn {Loadable Function} {@var{y} =} spprod (@var{x},@var{dim})\n\
 Product of elements along dimension @var{dim}.  If @var{dim} is omitted,\n\
 it defaults to 1 (column-wise products).\n\
-@end deftypefn\n\
-@seealso{spsum, spsumsq}")
+@seealso{spsum, spsumsq}\n\
+@end deftypefn")
 {
   SPARSE_DIM_ARG_BODY (spprod, prod);
 }
@@ -634,8 +634,8 @@
 @deftypefn {Loadable Function} {@var{y} =} spcumprod (@var{x},@var{dim})\n\
 Cumulative product of elements along dimension @var{dim}.  If @var{dim}\n\
 is omitted, it defaults to 1 (column-wise cumulative products).\n\
-@end deftypefn\n\
-@seealso{spcumsum}")
+@seealso{spcumsum}\n\
+@end deftypefn")
 {
   SPARSE_DIM_ARG_BODY (spcumprod, cumprod);
 }
@@ -648,8 +648,8 @@
 @deftypefn {Loadable Function} {@var{y} =} spsum (@var{x},@var{dim})\n\
 Sum of elements along dimension @var{dim}.  If @var{dim} is omitted, it\n\
 defaults to 1 (column-wise sum).\n\
-@end deftypefn\n\
-@seealso{spprod, spsumsq}")
+@seealso{spprod, spsumsq}\n\
+@end deftypefn")
 {
   SPARSE_DIM_ARG_BODY (spsum, sum);
 }
@@ -662,8 +662,8 @@
 @deftypefn {Loadable Function} {@var{y} =} spcumsum (@var{x},@var{dim})\n\
 Cumulative sum of elements along dimension @var{dim}.  If @var{dim}\n\
 is omitted, it defaults to 1 (column-wise cumulative sums).\n\
-@end deftypefn\n\
-@seealso{spcumprod}")
+@seealso{spcumprod}\n\
+@end deftypefn")
 {
   SPARSE_DIM_ARG_BODY (spcumsum, cumsum);
 }
@@ -682,8 +682,8 @@
 @end example\n\
 but it uses less memory and avoids calling @code{spconj} if @var{x} is\n\
 real.\n\
-@end deftypefn\n\
-@seealso{spprod, spsum}")
+@seealso{spprod, spsum}\n\
+@end deftypefn")
 {
   SPARSE_DIM_ARG_BODY (spsumsq, sumsq);
 }
@@ -1240,9 +1240,8 @@
   (2 , 3) -> 2\n\
   (3 , 4) -> 3\n\
 @end example\n\
-\n\
-@end deftypefn\n\
-@seealso{diag}")
+@seealso{diag}\n\
+@end deftypefn")
 {
   octave_value retval;