x = [];
x = ['A':'Z'];
for i='A':'Z'
for j='A':'Z'
x = [cellstr(x),[i,j]];
end
end
for i=1:100
app.UITable.ColumnName ={x(i)};
end
I want to change ColumnNames
with x characters but it doesn't work with above code. Hhow can I solve this problem?