Mercurial > hg > octave-nkf
diff scripts/strings/strtrim.m @ 7346:40252ccfcb67
[project @ 2008-01-04 20:26:25 by jwe]
author | jwe |
---|---|
date | Fri, 04 Jan 2008 20:26:26 +0000 |
parents | a1dbe9d80eee |
children | 693ac94c2854 |
line wrap: on
line diff
--- a/scripts/strings/strtrim.m +++ b/scripts/strings/strtrim.m @@ -1,4 +1,4 @@ -## Copyright (C) 1996, 2007 Kurt Hornik +## Copyright (C) 1996, 2007, 2008 Kurt Hornik ## ## This file is part of Octave. ## @@ -16,11 +16,13 @@ ## along with Octave; see the file COPYING. If not, see ## <http://www.gnu.org/licenses/>. -## -*- texinfo -*- @deftypefn {Function File} {} deblank (@var{s}) +## -*- texinfo -*- +## @deftypefn {Function File} {} deblank (@var{s}) ## Remove leading and trailing blanks and nulls from @var{s}. If ## @var{s} is a matrix, @var{deblank} trims each row to the length of ## longest string. If @var{s} is a cell array, operate recursively on -## each element of the cell array. @end deftypefn +## each element of the cell array. +## @end deftypefn ## Author: John Swensen <jpswensen@jhu.edu>