How to set only a row of data in a table in GUI?

4 views (last 30 days)
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!

Accepted Answer

Azzi Abdelmalek
Azzi Abdelmalek on 16 Oct 2013
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)

More Answers (0)

Categories

Find more on Tables in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!