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.
我有 10 个 Excel 文件,每个文件有 50 张,每张都有不同的名称。我想将所有工作表的名称加载到 MATLAB 中,将它们放入单元格字符串中。是否可以使用“xlsread”命令来执行此操作?或者还有其他方法吗?
谢谢!
您可以使用xlsfinfo获取 Excel 文件中的工作表名称列表。
xlsfinfo
[status,sheets] = xlsfinfo(filename)
变量 sheet 将包含一个带有工作表名称的元胞数组。