1. 需求描述
在下面的表格中有几百个字段,而且对应的excel有将近200个,我需要从excel文件中,提取需要的字段对应的数据进行分析。
2. 代码实现
xls2data=importdata(‘*.xlsx’) % use importdata function to import data
position=find(string(xls2data.colheaders)=='fieid that you need'); % find the position of the field
fielddata=data(:, position) % get the value of the field
3. 总结
首先,找到需要使用的列
在excel中的位置;find()
函数就起了这个作用。
其次,再从矩阵中取出该列对应的数据即可。