如何直接在对象单元中工作(在 Matlab 中)?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 cellfun 怎么样?
http://www.mathworks.com/help/techdoc/ref/cellfun.html
What about using cellfun ?
http://www.mathworks.com/help/techdoc/ref/cellfun.html