Which choice is the proper syntax to append a new elements a to the end of 1x 2 dimensional cell array C?
a
C
C = {C a};
C = cellcat(C a)
C = cat(2, {a}, C)
C{end+1}=a