Mercurial > hg > octave-lyh
diff src/data.cc @ 5642:2618a0750ae6
[project @ 2006-03-06 21:26:48 by jwe]
author | jwe |
---|---|
date | Mon, 06 Mar 2006 21:26:54 +0000 |
parents | 4b33d802ef3c |
children | a8f6903535c9 |
line wrap: on
line diff
--- a/src/data.cc +++ b/src/data.cc @@ -778,8 +778,8 @@ @deftypefn {Built-in Function} {} horzcat (@var{array1}, @var{array2}, @dots{}, @var{arrayN})\n\ Return the horizontal concatenation of N-d array objects, @var{array1},\n\ @var{array2}, @dots{}, @var{arrayN} along dimension 2.\n\ -@end deftypefn\n\ -@seealso{cat and vertcat}") +@seealso{cat, vertcat}\n\ +@end deftypefn") { octave_value_list args_tmp = args; @@ -797,8 +797,8 @@ @deftypefn {Built-in Function} {} vertcat (@var{array1}, @var{array2}, @dots{}, @var{arrayN})\n\ Return the vertical concatenation of N-d array objects, @var{array1},\n\ @var{array2}, @dots{}, @var{arrayN} along dimension 1.\n\ -@end deftypefn\n\ -@seealso{cat and horzcat}") +@seealso{cat, horzcat}\n\ +@end deftypefn") { octave_value_list args_tmp = args; @@ -856,9 +856,8 @@ 0 0\n\ @end group\n\ @end example\n\ -\n\ -@end deftypefn\n\ -@seealso{horzcat and vertcat}") +@seealso{horzcat, vertcat}\n\ +@end deftypefn") { return do_cat (args, "cat"); } @@ -897,9 +896,8 @@ Return the generalized transpose for an N-d array object @var{a}.\n\ The permutation vector @var{perm} must contain the elements\n\ @code{1:ndims(a)} (in any order, but each element must appear just once).\n\ -\n\ -@end deftypefn\n\ -@seealso{ipermute}") +@seealso{ipermute}\n\ +@end deftypefn") { return do_permute (args, false, "permute"); } @@ -913,9 +911,8 @@ ipermute (permute (a, perm), perm)\n\ @end example\n\ returns the original array @var{a}.\n\ -\n\ -@end deftypefn\n\ -@seealso{permute}") +@seealso{permute}\n\ +@end deftypefn") { return do_permute (args, true, "ipermute"); }