matlab如何迭代工作区中的所有对象
我有一个 matlab 工作区,其中所有变量都是使用 load 命令从 .mat 文件加载的。现在,我想迭代所有这些对象并对它们执行操作。
有没有办法在不明确说明对象名称的情况下访问对象?例如工作区(1)?
I have a matlab workspace where all of the variables are loaded from a .mat file using the load command. Now, I want to iterate through all of these objects and perform operations on them.
Is there someway to access the objects without explicitly stating their names? For example workspace(1)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
who
以字符串形式获取所有变量的列表:然后,如果您想对变量的内容执行某些操作(
who
仅给出变量名称),您可以可以做这样的事情:You can get the list of all the variables as string using
who
:then if you want to do something with the content of the variables (
who
gives variable names only), you can do something like this:我同意@Simon的答案,但是如果您感兴趣的是从单个 .mat 文件加载的变量,那么您最好使用 load 的结构赋值形式:
现在而不是获取 'x', 'y ', 'z' 在您的工作区中,您有
Sx
、Sy
和Sz
。然后,您可以使用以下命令迭代结构体的所有字段:
I agree with @Simon's answer, however if all you are interested in are variables that are loaded from a single .mat file, you may be better off using the struct-assignment form of load:
Now instead of getting 'x', 'y', 'z' in your workspace, you have
S.x
,S.y
andS.z
.You can then iterate all the fields of the struct with: