MATLAB: Double to string in a cell

double to string

Hi, is there an easier way to convert from double to string in a cell?
Thank you
Left = {num2str(variable1)
num2str(variable2)
num2str(variable3)
etc...}
set(handles.Left_Listbox,'String',Left)

Best Answer

A={1 2 12 25}
B=cellfun(@num2str,A,'un',0)