In MatLab, all the cells of my 60x1-cellarray contain 10x1 double.
I would like to combine all these doubles vertically, with the exception of the first number in each double.
My unsuccessful attempts:
CellArray={[1 2 3];[1 2 3];[1 2 3]}
ContacenatedCellArray = vertcat(CellArray{:,1}(2:end))
This obviously didn’t work, because it CellArray{:,1}applies to several cells, so it’s a (2:end)little stupid.
Do you have any suggestions?
Thanks in advance!
source
share