matlab循环向量化

发布于 2024-11-03 16:35:32 字数 391 浏览 2 评论 0原文

我想知道是否有人可以帮助我矢量化这些 for 循环,我已经尝试过几次但无法提前致谢。

pixel_depth = 16; 
pixel_range = 2^pixel_depth -1;

for i=1:height

    for j=1:width

        for k=1:gaussianComponents

           mean(i,j,k) = rand*pixel_range; 

           weights(i,j,k) = 1/gaussianComponents; 

           pixelDeviation(i,j,k) = diviationNew; 

       end

    end

 end

谢谢您的帮助....

I was wondering if anyone could help me vectorize these for loops I have attempt a few time but have not been able to thanks in advance.

pixel_depth = 16; 
pixel_range = 2^pixel_depth -1;

for i=1:height

    for j=1:width

        for k=1:gaussianComponents

           mean(i,j,k) = rand*pixel_range; 

           weights(i,j,k) = 1/gaussianComponents; 

           pixelDeviation(i,j,k) = diviationNew; 

       end

    end

 end

Thank you for any help....

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

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

发布评论

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

评论(1

坏尐絯℡ 2024-11-10 16:35:32
mean = rand(height, width, gaussianComponents) * pixel_range;

weights = 1/gaussianComponents * ones(height, width, gaussianComponents);

pixelDeviation = diviationNew * ones(height, width, gaussianComponents);

请注意,mean 对于变量来说是一个不好的名称,因为它会隐藏 mean 函数。

mean = rand(height, width, gaussianComponents) * pixel_range;

weights = 1/gaussianComponents * ones(height, width, gaussianComponents);

pixelDeviation = diviationNew * ones(height, width, gaussianComponents);

Note that mean is a bad name for a variable, as it will hide the mean function.

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