MATLAB怎么读取excel文件中的数据
1个回答
展开全部
% 创建xls文件:
values = {1, 2, 3 ; 4, 5, 'x' ; 7, 8, 9};
headers = {'First', 'Second', 'Third'};
xlswrite('myExample.xls', [headers; values]);
moreValues = rand(5);
xlswrite('myExample.xls', moreValues, 'MySheet');
% 从创建的xls文件中读取数据
A = xlsread('myExample.xls')
values = {1, 2, 3 ; 4, 5, 'x' ; 7, 8, 9};
headers = {'First', 'Second', 'Third'};
xlswrite('myExample.xls', [headers; values]);
moreValues = rand(5);
xlswrite('myExample.xls', moreValues, 'MySheet');
% 从创建的xls文件中读取数据
A = xlsread('myExample.xls')
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询