0

是否有Matlab的命令来获取excel文件中写入的列数?

这是我的excel文件: 在此处输入图像描述

这是我的代码:

e = actxserver ('Excel.Application'); %# open Activex server
filename = fullfile(pwd,'example2.xlsx'); %# full path required
ewb = e.Workbooks.Open(filename); %# open the file
esh = ewb.ActiveSheet;

我试过了:

intCol = Range('IV1').End(xlLeft).Col;

谢谢你 :]

4

1 回答 1

2

关于什么:

[num, txt, raw] = xlsread('example2.xlsx');
intCol = size(raw, 2);
于 2012-04-16T12:07:08.580 回答