matlab如何迭代工作区中的所有对象

发布于 2024-12-01 09:38:08 字数 118 浏览 3 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

爱情眠于流年 2024-12-08 09:38:08

您可以使用 who 以字符串形式获取所有变量的列表:

myvars = who;

然后,如果您想对变量的内容执行某些操作(who 仅给出变量名称),您可以可以做这样的事情:

for i=1:length(myvars)
    myfunction(eval(myvars(i)))
end

You can get the list of all the variables as string using who:

myvars = 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:

for i=1:length(myvars)
    myfunction(eval(myvars(i)))
end
深海少女心 2024-12-08 09:38:08

我同意@Simon的答案,但是如果您感兴趣的是从单个 .mat 文件加载的变量,那么您最好使用 load 的结构赋值形式:

S = load('myfile.mat')

现在而不是获取 'x', 'y ', 'z' 在您的工作区中,您有 SxSySz

然后,您可以使用以下命令迭代结构体的所有字段:

for f = fieldnames(S)'
   disp(['Field named: ' f{1} ]);
   disp('Has value ')
   disp(S.(f{1}));
end

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:

S = load('myfile.mat')

Now instead of getting 'x', 'y', 'z' in your workspace, you have S.x, S.y and S.z.

You can then iterate all the fields of the struct with:

for f = fieldnames(S)'
   disp(['Field named: ' f{1} ]);
   disp('Has value ')
   disp(S.(f{1}));
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文