Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 MATLAB 中,我使用 ActiveX 从 excel 文件中导入多列数据。每列的长度不同且未知。因此我不知道要放置什么单元格范围。
Range = get(hSheet5, 'Range', '??:??');
matlab有没有办法检测列的长度,这样我就可以知道导入时要放置什么单元格范围?
我想知道解决方案是否应该使用 ActiveX。我会使用内置函数来读取 XLS 文件:
columnB = xlsread(fileName, sheetName, 'B:B');