7017
|
1 ## Copyright (C) 1998, 2000, 2004, 2005, 2006, 2007 John W. Eaton |
3175
|
2 ## |
|
3 ## This file is part of Octave. |
|
4 ## |
|
5 ## Octave is free software; you can redistribute it and/or modify it |
|
6 ## under the terms of the GNU General Public License as published by |
7016
|
7 ## the Free Software Foundation; either version 3 of the License, or (at |
|
8 ## your option) any later version. |
3175
|
9 ## |
|
10 ## Octave is distributed in the hope that it will be useful, but |
|
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
13 ## General Public License for more details. |
|
14 ## |
|
15 ## You should have received a copy of the GNU General Public License |
7016
|
16 ## along with Octave; see the file COPYING. If not, see |
|
17 ## <http://www.gnu.org/licenses/>. |
3175
|
18 |
3416
|
19 ## -*- texinfo -*- |
3499
|
20 ## @deftypefn {Function File} {} upper (@var{s}) |
5676
|
21 ## Transform all letters in the character string (or cell array of |
|
22 ## character strings) @var{s} to upper case. |
|
23 ## @seealso{lower, tolower, toupper} |
3407
|
24 ## @end deftypefn |
3175
|
25 |
|
26 ## Author: jwe |
|
27 |
|
28 function retval = upper (s) |
|
29 |
|
30 if (nargin != 1) |
6046
|
31 print_usage (); |
3175
|
32 endif |
|
33 |
5676
|
34 if (ischar (s)) |
|
35 retval = toupper (s); |
|
36 elseif (iscellstr (s)) |
6023
|
37 retval = cellfun (@toupper, s, "UniformOutput", false); |
5676
|
38 else |
|
39 error ("upper: `s' must be a string or cell array of strings"); |
|
40 endif |
3175
|
41 |
|
42 endfunction |