MATLAB 向量化嵌套 for 循环

发布于 2024-11-05 04:05:40 字数 232 浏览 1 评论 0原文

您好,我正在与 matlab 向量化作斗争,对此有任何帮助将非常感谢。

oldLocationLimit_ 都是矩阵

   for i=1:250
       for j=1:350
           temp= oldLocation(i,j,:)./Limit_(i,j,:);
       end
    end

Hi I am struggling with matlab vactorization any help on this would be great thanks.

oldLocation, Limit_ are both matrices

   for i=1:250
       for j=1:350
           temp= oldLocation(i,j,:)./Limit_(i,j,:);
       end
    end

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

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

发布评论

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

评论(1

信仰 2024-11-12 04:05:40

直接进行除法即可。当然,您需要调整后面的代码(除非您继续覆盖 temp

temp = oldLocation./Limit_;

Just perform the division directly. Of course, you'll need to adapt the code that follows (unless you keep overwriting temp)

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