gpt4 book ai didi

excel - Matlab - 为什么有时 xslread 不允许使用数字作为工作表参数?

转载 作者:行者123 更新时间:2023-12-02 21:34:40 25 4
gpt4 key购买 nike

我想使用 matlab 的 xlsread 函数读取一个包含 10 张表格的 Excel 文件,如下所示:

SPLByFrequency = zeros(173, 10);
for i = 1:10
rawData = xlsread('mediciones', i);
SPLByFrequency(:, i) = rawData(84:256, 3);
end

这不是我第一次使用数字作为参数读取 Excel 工作表,而且从来没有遇到过任何问题,但这次它不允许我这样做,并且出现此错误:

Error using xlsread (line 207)
In basic mode, sheet argument must be a string.

Error in TareaB53 (line 11)
rawData = xlsread('mediciones', i);

我无法更改此“基本”模式并进行了一些调试,我发现,奇怪的是, xlsread('mediciones', 1) 可以工作,但它不适用于任何其他数字。

做了一些研究,我发现有一种方法可以通过使用 xlsinfo 获取工作表名称,然后使用工作表字符串作为参数来逃避这个问题,但我不明白为什么我不能简单地做到这一点直接用数字来实现,为什么我可以只用数字 1 来实现,或者为什么它突然不起作用,而我一直用数字作为参数来实现。

有没有办法解决这个问题并直接使用数字作为工作表参数?

编辑 - 摘要和新信息

如果您没有安装 Excel for Windowsxlsread 将在基本模式下运行,因此您无法使用数字作为工作表参数。

因此,为了可移植性,最好使用xlsinfo来获取工作表字符串。

出于某种原因,即使看起来不应该,(对我来说)它可以在 OS X 10.9 上运行。但是,它在 OS X 10.11 上不再起作用(我有 Matlab 版本 2012a)。

最佳答案

正如评论中所建议的,您需要Excel for Windows,否则您将处于基本模式。以下是文档的相关摘录:

num = xlsread(filename) reads data from the first worksheet in the Microsoft® Excel® spreadsheet file named filename and returns the numeric data in array num.

On Windows® systems with Microsoft Excel software, xlsread reads any file format recognized by your version of Excel.

If your system does not have Excel for Windows, xlsread operates in basic import mode, and reads only XLS, XLSX, XLSM, XLTX, and XLTM files.

我怀疑它以前有效,因为你在 Windows PC 上使用它,而不是 Mac。

关于excel - Matlab - 为什么有时 xslread 不允许使用数字作为工作表参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36090528/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com