Question: Which choice is the proper syntax to append a new elements `a` to the end of 1x 2 dimensional cell array `C`?
- C = {C a};
- C = cellcat(C a)
- C = cat(2, {a}, C)
- C{end+1}=a
Answer: The correct answer of the above question is Option D:C{end+1}=a