MATLAB: How to convert a 2-D char to string

string char

i have a 2/5 char array that i want to convert to string. How please?

Best Answer

Is this what you mean?
>> C=['abcde';'fghij']
C =
abcde
fghij
>> reshape(C.',[],1).'
ans =
abcdefghij