1 matlab 读取excel文件
clc;
clear all;
x = xlsread(‘D:\test‘,‘Sheet1‘,‘b2:D3‘);
2 对读取到的数据,求平均值
clc;
clear all;
x = xlsread(‘D:\test‘,‘Sheet1‘,‘b2:D3‘);
mean(x)
3 在求一次平均值
matlab 读取excel 数据,布布扣,bubuko.com
原文:http://blog.csdn.net/cjr3517126/article/details/21237779