MATLAB: Tabulate cell2table

cell2tableMATLAB

B = tabulate(A)
%2x3 cell
B = cell2table(B,'VariableNames', ...
{'Gender','Count','Percent'})
I get this error, error using cell2table (line 24) c must be a 2-d cell array.
I dont understand why i am getting this error. I am seeing resut for tabulate function 2×3 cell. can not convert it to table. cell2table function works on my different tabulate function calculation

Best Answer

You would get that error if A was a numeric vector, in which case B would be a numeric output array rather than a cell array. Then the numeric array would be a problem when passed to cell2table()
Related Question