I have a cell array 1300x6 that is all numbers. Below is an example of one row:
| 000 | 00 | 00 | 12 | 345 | 678 |
What I want to accomplish, is to have all the numbers in each row concatenated into one cell so that it is a 1300x1 array. I have tried cat, vertcat, horzcat and reshape but they all just merge the columns into each other, creating more rows. I would like it to look like this:
| 000000012345678 |
Is this possible?