MATLAB: Disply data in row (uitable)

guiuitable

Hi,
When I am storing 5 variables in uitable using this code: cData = {complete; AInfo; BInfo; CInfo; DInfo}; set(handles.infoTable, 'data', cData);
The data is displayed in the in one column but not in a row. How can I do it?
Thanks.

Best Answer

Maybe you should use ( , ) instead of ( ; )
cData = {complete, AInfo,BInfo, CInfo, DInfo};