如何自动分析存储在 mat 文件中的矩阵?
我有一个多维 .mat 文件,其中包含一堆 mxn 数组,其中每个数组的名称都不同,例如 f1
、f2
等。我想打开.mat 文件自动归档并分析每个文件。我该怎么做?
I've got a multidimensional .mat file with a bunch of m x n arrays where each one is called something different, for example f1
, f2
, etc. I want to open the .mat file up and analyze each file automatically. How do I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您确定 .mat 文件中的所有变量都是要处理的 M×N 数组,那么这应该可行:
上面使用了函数
加载
和fieldnames
,并使用 动态字段名称。If you know for certain that all the variables in the .mat file are M-by-N arrays to be processed, then this should work:
The above uses the functions
load
andfieldnames
, and accesses structure fields using dynamic field names.