如何直接在对象单元中工作(在 Matlab 中)?

发布于 2024-11-05 09:42:57 字数 216 浏览 1 评论 0原文

C 是 A 类对象的 mxn 单元。A 类有方法 f()。然后,我有这几行代码

sum=0;
for i=1:m
    for j=1:n
        a=C{i,j};
        sum=sum +a.f();
    end
end

似乎使用for循环会使代码运行缓慢。有什么方法可以提高代码的性能,例如使用某种对象矩阵或类似的东西?

C is a mxn cell of objects of class A. Class A have the method f(). Then, I have these lines of code

sum=0;
for i=1:m
    for j=1:n
        a=C{i,j};
        sum=sum +a.f();
    end
end

It seems that using the for loop will make the code run slowly. Is there any way, like using some kinds of matrix of objects, or something like that, for the better performance of this code?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文