As the title already mentions, how is it possible to add a new cell array 1x1 at the end of an existing cell array, let's call him Q
, which is a cell array 1x3256?
If you mean adding a single cell to the end (i.e. so your 1-by-3256 cell array becomes a 1-by-3257 cell array) then:
Q{end+1} = []
and you can replace []
with your value directly
Alternatively:
Q(end+1) = {[]}