MATLAB: Working with data in table

comma separated data in a cell

I want to insert data in a particular collumn in table in app designer in the form 1,2 and not as 12 for certain cells. How do i do it ? Can anyone help?
Thanks

Best Answer

You can use data property to change data of a uitable object
app.UITable.Data{2,3} = '1,2';
It will set 2nd row of 3rd column to '1,2'.