MATLAB: How to convert matrix (double) to cell array of string

matrix double to cell array of string

I have the following matrix and I want to convert it in cell array of string.
Please help me with this issue.
A=[-1; -3; -5; -5; -6; -7; -9; -3; -7; -9; -8; -9; -10]

Best Answer

A_cell = cellstr(str2num(A));