So ,
i have a cell array(1x5 cell) like this:
{[1111] [1111] [1010] [1000] [1011]}
the elements inside the cell array are type of double , but i want them to be type of char like this :
{'1111' '1111' '1010' '1000' '1011'}
i tried to convert them with num2str but i get the error Undefined function 'abs' for input arguments of type 'cell'. , basically meaning that i cannot use the function num2str for cell arrays
Anyone has an idea how to convert double to char in cell arrays?