changeset 21521:02cbd95095cc

doc: shorten repmat one-line description so it appears in "lookfor repeat".
author Carnë Draug <carandraug@octave.org>
date Tue, 22 Mar 2016 17:22:00 +0000
parents e1c921322ba2
children 27f2881598fa
files scripts/general/repmat.m
diffstat 1 files changed, 4 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/general/repmat.m	Tue Mar 22 09:26:44 2016 -0700
+++ b/scripts/general/repmat.m	Tue Mar 22 17:22:00 2016 +0000
@@ -24,6 +24,8 @@
 ## @deftypefnx {} {} repmat (@var{A}, @var{m}, @var{n}, @var{p} @dots{})
 ## @deftypefnx {} {} repmat (@var{A}, [@var{m} @var{n}])
 ## @deftypefnx {} {} repmat (@var{A}, [@var{m} @var{n} @var{p} @dots{}])
+## Repeat matrix or N-D array.
+##
 ## Form a block matrix of size @var{m} by @var{n}, with a copy of matrix
 ## @var{A} as each element.
 ##
@@ -31,7 +33,8 @@
 ## copying along more than two dimensions, specify the number of times to copy
 ## across each dimension @var{m}, @var{n}, @var{p}, @dots{}, in a vector in the
 ## second argument.
-## @seealso{repelems}
+##
+## @seealso{bsxfun, kron, repelems}
 ## @end deftypefn
 
 ## Author: Paul Kienzle <pkienzle@kienzle.powernet.co.uk>