MATLAB: Converting entire cell array to strings

cell arrayscharstrings

x={'words',10,20,30,'more words'}
How do I convert the entire cell array above to strings?

Best Answer

x={'words',10,20,30,'more words'}
out=cellfun(@num2str,x,'un',0)