0

在 matlab 中,我希望只读取 excel 工作表中的第一行,但不知道工作表中的列数。即我想做相当于

filename = 'myExample.xlsx';

columnB = xlsread(filename,'B:B') .

知道方法将不胜感激。

4

1 回答 1

0
firstrow = xlsread(filename, '1:1')

应该这样做。

于 2012-10-19T13:08:31.820 回答