I'm trying to concatenate two arrays as follows:
z={ '35' {'test'} ; '45' {'test'}}
z={z{:} ;{'55' {'test'}}}
I would expect the result to be
{35 {'test'}
45 {'test'}
55 {'test'}}
but instead I get:
Error using vertcat
Dimensions of matrices being concatenated are not consistent.
What am I forgetting? Thanks.