如何在matlab中的appdesigner中设置表的大小



我正试图在appdesigner中构建一个100*100的表,就像Matlab命令中的uitable(图100100(一样但在appdesigner中,我无法设置表的大小。我急需帮助来修复它。谢谢

您可以在图的startupFcn回调中更改表的大小。

% Initialize the table to have 100 rows and 100 columns
% Each Row-Column cell can also be initialized with real data
app.UITable.Data = cell( 100, 100);
% Specify the row and column names, 100 x 1 cell {'Col 1', 'Col 2', ... }
app.UITable.ColumnName = {};
app.UITable.RowName = {};

相关内容

  • 没有找到相关文章