I have a cell array:
cellArray = {
'123' 'BC' 'other value';
'124' 'BC' 'other value';
'125' 'BC' 'other value';
'126' 'BC' 'other value';
}
I would like to obtain this:
cellArray = {
'123 BC' 'other value';
'124 BC' 'other value';
'125 BC' 'other value';
'126 BC' 'other value';
}
As you can see the second column is now concatenated to the first... Any suggestion?