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.
我有一个 .mat 文件太大(2.72 GB)无法加载。有什么方法可以在不打开的情况下知道文件的内容?我需要知道要在代码中使用的 .mat 文件中的矩阵名称。
你可以使用:
>> whos('-file','yourfilename.mat')
'whos' 函数将为您列出 mat 文件中的变量。
whos('-file','matFile.mat')