excel表格导入matlab后怎么用指定的行和列来画图,

2024-12-22 09:59:04
推荐回答(1个)
回答1:

dt = xlsread('data.xls');
plot(dt(1:3,1),dt(1:3,2),'ro');