Info

This question is closed. Reopen it to edit or answer.

Get NaNs when I try to enter characters in UITABLE

4 views (last 30 days)
status(i) = {''};
>> TL = array2table(transpose(i),'VariableNames',{'Label'});
TD = array2table(transpose(ED),'VariableNames',{'Distance'});
TS=array2table(status, 'VariableNames',{'Status'});
T = [TL TD TS];
subplot(2,2,[2 4])
t = uitable('Data',T{:,:},'ColumnName',T.Properties.VariableNames,...
'RowName',T.Properties.RowNames,'Units', 'Normalized', 'Position',[0, 0, 1, 1],'FontSize', 12.5,'ColumnWidth',{100 100 100});
error: Cannot concatenate the table variables 'Label' and 'Status', because their types are double and cell. What can be done to solve this issue?

Answers (0)

This question is closed.

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!