我是Matlab的新手。我使用matlab(R2009)。
我使用matlab创建了GUI,我想将数据集导入到创建GUI的表中.Dataset包含分类和数值。我尝试了几种方法,我可以将数据集作为图形文件导入,在该图中不能修改数据集。我也尝试了另一种方法,并将数据集带入命令窗口。但我需要在我的GUI中的表格中显示数据集。
导入数据集后,我想将数据集中的每个变量添加到列表框中。通过在列表框中单击这些变量,它可以绘制图形,计算均值等...
谢谢。
答案 0 :(得分:0)
也许你可以先用
从表中导入数据[a, b, c] = xlsread('MyTable.xls');
% and then create the table and set the data with
h = uitable; % or create it directly from the GUI design
set(h, 'data', [1 2 3]);
% or set the data from the readed excel
set(h, 'data', a);
[edit]你可以从matlab运行uitabledemo来查看一些适合你的演示。