| MATLAB Function Reference | ![]() |
S = str2mat(T1, T2, T3, ...)
S = str2mat(T1, T2, T3, ...) forms the matrix S containing the text strings T1, T2, T3, ... as rows. The function automatically pads each string with blanks in order to form a valid matrix. Each text parameter, Ti, can itself be a string matrix. This allows the creation of arbitrarily large string matrices. Empty strings are significant.
Note This routine will become obsolete in a future version. Use char instead. |
str2mat differs from strvcat in that empty strings produce blank rows in the output. In strvcat, empty strings are ignored.
x = str2mat('36842', '39751', '38453', '90307');
whos x
Name Size Bytes Class
x 4x5 40 char array
x(2,3)
ans =
7![]() | str2func | str2num | ![]() |
| © 1984-2008- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |