帮我生成一段matlab代码,可以用来读取excel表格中的不同列数据并且作图
时间: 2023-03-11 09:53:53 浏览: 184
matlab读取excel表格
下面是一段可以用来读取Excel表格中不同列数据并作图的Matlab代码:[num, txt, raw] = xlsread('文件路径');x1 = num(:,1); % 读取第一列
x2 = num(:,2); % 读取第二列
y1 = num(:,3); % 读取第三列plot(x1,y1);
hold on;
plot(x2,y1);
hold off;
阅读全文