How to combine 2 not even cells into 1 cell in MAtlab? -


I have a problem here, excel files (Test XLS) with 2 sheets in Matlab (Test 1 and Test 2) Should read and use to analyze its data so I did: [a, b, c] = xlsread ('test.xls', 'text1'); And [D, E, F] = xlsread ('Test.xls', 'text2');

I have the result: c: & lt; 65000x18 cell & gt; And f is:

Can someone help me to join 1 of these 2 cells? As z:: & lt; 89 9 12x18 cell & gt;

Jackie

you Everyone has to move again.

  z = [c 'f'] '   

Comments