MATLAB: Equivalent of [C{:}] for vertcat

cell arraysMATLAB

To concatenate horizontally the content of a cell array we can use the very practice syntax [C{:}]. For example:
A = {(1:3) (4:7)};
B = [A{:}]
B =
1 2 3 4 5 6 7
Is there a way to obtain the same results in the vertical direction (except vertcat of course)
A = {(1:3)' (4:7)'};
B = ?
B =
1
2
3
4
5
6
7

Best Answer

Well, it's not vertcat...
B=cat(1,A{:})
But no, I don't think there's a way purely with operator syntax.