我试图在我的MATLAB GUI中按照MATLAB网站上提供的示例进行操作,我能够创建一个。但是,就我而言,表中的行数取决于我的数据大小。所以我想知道如何恰当地标记行。 假设数据有N个点我希望行读取1 2 3 4,..... N
任何人都知道如何修改代码以使其成功吗?
这是我到目前为止所做的:
f = figure('Position',[440 500 461 146]);
% create the data
d = [1 2 3; 4 5 6; 7 8 9];
A = size(d)
% Create the column and row names in cell arrays
cnames = {'X-Data','Y-Data','Z-Data'};
for i = 1:A(1)
%%Fills the row names depending on A(1)
rnames = {'1','2','3'};
end
% Create the uitable
t = uitable(f,'Data',d,...
'ColumnName',cnames,...
'RowName',rnames);
由于