y=cellstr(c)| Inputs | |
c |
A two-dimensional character array. |
| Outputs | |
y |
A cell array of strings. |
m is the number of rows in the input, the output is a cell array of
size m , with each element of the output being a string comprised of
the characters in the corresponding row of the input.
>>c=['abc';'efg';'hij']; >>cellstr(c) abc efg hij