MATLAB: How to set only a row of data in a table in GUI

set row data

I want to set the data of a certain row and leave rest of the table blank. How can I realize that? Thanks a lot!

Best Answer

A=[1 2 3;4 5 6;7 8 9];
% If your table contains 8 rows, create a new array with 8 rows
B=[num2cell(A);cell(5,3)]
f=figure,
t=uitable(f,'data',B)