Mercurial > hg > octave-lyh
annotate scripts/strings/strjust.m @ 14138:72c96de7a403 stable
maint: update copyright notices for 2012
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Mon, 02 Jan 2012 14:25:41 -0500 |
parents | f3b665972bb5 |
children | 4d917a6a858b |
rev | line source |
---|---|
14138
72c96de7a403
maint: update copyright notices for 2012
John W. Eaton <jwe@octave.org>
parents:
13318
diff
changeset
|
1 ## Copyright (C) 2000-2012 Paul Kienzle |
10020 | 2 ## Copyright (C) 2009 Jaroslav Hajek |
3789 | 3 ## |
4 ## This file is part of Octave. | |
5 ## | |
6 ## Octave is free software; you can redistribute it and/or modify it | |
7 ## under the terms of the GNU General Public License as published by | |
7016 | 8 ## the Free Software Foundation; either version 3 of the License, or (at |
9 ## your option) any later version. | |
3789 | 10 ## |
11 ## Octave is distributed in the hope that it will be useful, but | |
12 ## WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
14 ## General Public License for more details. | |
15 ## | |
16 ## You should have received a copy of the GNU General Public License | |
7016 | 17 ## along with Octave; see the file COPYING. If not, see |
18 ## <http://www.gnu.org/licenses/>. | |
3789 | 19 |
20 ## -*- texinfo -*- | |
13318
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
21 ## @deftypefn {Function File} {} strjust (@var{s}) |
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
22 ## @deftypefnx {Function File} {} strjust (@var{s}, @var{pos}) |
11150 | 23 ## Return the text, @var{s}, justified according to @var{pos}, which may |
24 ## be @samp{"left"}, @samp{"center"}, or @samp{"right"}. If @var{pos} | |
13318
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
25 ## is omitted it defaults to @samp{"right"}. |
11096
04c3aacbbc46
strjust.m: Clarify that justification applies to spaces and null characters.
Ben Abbott <bpabbott@mac.com>
parents:
10635
diff
changeset
|
26 ## |
11563
3c6e8aaa9555
Grammarcheck m-files before 3.4 release.
Rik <octave@nomad.inbox5.com>
parents:
11523
diff
changeset
|
27 ## Null characters are replaced by spaces. All other character |
11096
04c3aacbbc46
strjust.m: Clarify that justification applies to spaces and null characters.
Ben Abbott <bpabbott@mac.com>
parents:
10635
diff
changeset
|
28 ## data are treated as non-white space. |
04c3aacbbc46
strjust.m: Clarify that justification applies to spaces and null characters.
Ben Abbott <bpabbott@mac.com>
parents:
10635
diff
changeset
|
29 ## |
04c3aacbbc46
strjust.m: Clarify that justification applies to spaces and null characters.
Ben Abbott <bpabbott@mac.com>
parents:
10635
diff
changeset
|
30 ## Example: |
11563
3c6e8aaa9555
Grammarcheck m-files before 3.4 release.
Rik <octave@nomad.inbox5.com>
parents:
11523
diff
changeset
|
31 ## |
8442
502e58a0d44f
Fix docstrings, add examples, references and tests to string functions
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
7017
diff
changeset
|
32 ## @example |
502e58a0d44f
Fix docstrings, add examples, references and tests to string functions
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
7017
diff
changeset
|
33 ## @group |
502e58a0d44f
Fix docstrings, add examples, references and tests to string functions
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
7017
diff
changeset
|
34 ## strjust (["a"; "ab"; "abc"; "abcd"]) |
502e58a0d44f
Fix docstrings, add examples, references and tests to string functions
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
7017
diff
changeset
|
35 ## @result{} ans = |
502e58a0d44f
Fix docstrings, add examples, references and tests to string functions
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
7017
diff
changeset
|
36 ## a |
502e58a0d44f
Fix docstrings, add examples, references and tests to string functions
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
7017
diff
changeset
|
37 ## ab |
502e58a0d44f
Fix docstrings, add examples, references and tests to string functions
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
7017
diff
changeset
|
38 ## abc |
502e58a0d44f
Fix docstrings, add examples, references and tests to string functions
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
7017
diff
changeset
|
39 ## abcd |
502e58a0d44f
Fix docstrings, add examples, references and tests to string functions
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
7017
diff
changeset
|
40 ## @end group |
502e58a0d44f
Fix docstrings, add examples, references and tests to string functions
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
7017
diff
changeset
|
41 ## @end example |
11114
f7079e3b0227
strjust.m: Add "untabify" and "strrep" to @seealso{} in the doc-string.
Ben Abbott <bpabbott@mac.com>
parents:
11096
diff
changeset
|
42 ## @seealso{deblank, strrep, strtrim, untabify} |
3789 | 43 ## @end deftypefn |
44 | |
13318
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
45 function y = strjust (s, pos = "right") |
3789 | 46 |
47 if (nargin < 1 || nargin > 2) | |
6046 | 48 print_usage (); |
13318
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
49 elseif (! ischar (s) || ndims (s) > 2) |
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
50 error ("strjust: S must be a string or 2-D character matrix"); |
10018 | 51 endif |
3789 | 52 |
11469
c776f063fefe
Overhaul m-script files to use common variable name between code and documentation.
Rik <octave@nomad.inbox5.com>
parents:
11150
diff
changeset
|
53 if (isempty (s)) |
c776f063fefe
Overhaul m-script files to use common variable name between code and documentation.
Rik <octave@nomad.inbox5.com>
parents:
11150
diff
changeset
|
54 y = s; |
13318
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
55 return; |
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
56 endif |
10020 | 57 |
13318
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
58 ## Apparently, Matlab considers nulls to be blanks as well; however, does |
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
59 ## not preserve the nulls, but rather converts them to blanks. That's a |
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
60 ## bit unexpected, but it allows simpler processing, because we can move |
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
61 ## just the nonblank characters. So we'll do the same here. |
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
62 |
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
63 [nr, nc] = size (s); |
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
64 ## Find the indices of all nonblanks. |
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
65 nonbl = s != " " & s != "\0"; |
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
66 [idx, jdx] = find (nonbl); |
3789 | 67 |
13318
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
68 if (strcmpi (pos, "right")) |
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
69 ## We wish to find the maximum column index for each row. Because jdx is |
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
70 ## sorted, we can take advantage of the fact that assignment is processed |
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
71 ## sequentially and for duplicate indices the last value will remain. |
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
72 maxs = repmat (nc, [nr, 1]); |
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
73 maxs(idx) = jdx; |
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
74 shift = nc - maxs; |
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
75 elseif (strcmpi (pos, "left")) |
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
76 ## See above for explanation. |
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
77 mins = ones (nr, 1); |
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
78 mins(flipud (idx(:))) = flipud (jdx(:)); |
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
79 shift = 1 - mins; |
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
80 else |
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
81 ## Use both of the above to achieve centering. |
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
82 mins = ones (nr, 1); |
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
83 mins(flipud (idx(:))) = flipud (jdx(:)); |
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
84 maxs = repmat (nc, [nr, 1]); |
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
85 maxs(idx) = jdx; |
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
86 shift = floor ((nc + 1 - maxs - mins) / 2); |
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
87 endif |
10018 | 88 |
13318
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
89 ## Adjust the column indices. |
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
90 jdx += shift(idx); |
10018 | 91 |
13318
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
92 ## Create a blank matrix and position the nonblank characters. |
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
93 y = repmat (" ", nr, nc); |
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
94 y(sub2ind ([nr, nc], idx, jdx)) = s(nonbl); |
3789 | 95 |
96 endfunction | |
8442
502e58a0d44f
Fix docstrings, add examples, references and tests to string functions
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
7017
diff
changeset
|
97 |
13318
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
98 |
8442
502e58a0d44f
Fix docstrings, add examples, references and tests to string functions
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
7017
diff
changeset
|
99 %!assert (strjust (["a"; "ab"; "abc"; "abcd"]), |
502e58a0d44f
Fix docstrings, add examples, references and tests to string functions
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
7017
diff
changeset
|
100 %! [" a";" ab"; " abc"; "abcd"]); |
13318
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
101 %!assert (strjust ([" a"; " ab"; "abc"; "abcd"], "left"), |
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
102 %! ["a "; "ab "; "abc "; "abcd"]); |
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
103 %!assert (strjust (["a"; "ab"; "abc"; "abcd"], "CENTER"), |
8442
502e58a0d44f
Fix docstrings, add examples, references and tests to string functions
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
7017
diff
changeset
|
104 %! [" a "; " ab"; "abc "; "abcd"]); |
13318
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
105 %!assert (strjust (["";""]), ""); |
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
106 |
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
107 %% Test input validation |
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
108 %!error <Invalid call to strjust> strjust () |
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
109 %!error <Invalid call to strjust> strjust (["a";"ab"], "center", 1) |
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
110 %!error <S must be a string> strjust (ones(3,3)) |
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
111 %!error <S must be a string> strjust (char (ones(3,3,3))) |
f3b665972bb5
strjust.m: Tweak code for performance. Add more input validation and tests.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
112 |