# HG changeset patch # User Carnë Draug # Date 1458667320 0 # Node ID 02cbd95095cc0cf43d3e78690754b31dcce6f7fb # Parent e1c921322ba2ab9241123c59ddc0552fe410ab14 doc: shorten repmat one-line description so it appears in "lookfor repeat". diff -r e1c921322ba2 -r 02cbd95095cc scripts/general/repmat.m --- 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