使用 MATLAB 将矩阵元素概率设置为零

发布于 2024-12-08 13:50:08 字数 238 浏览 0 评论 0原文

我有一个大小为 mXn 的矩阵 A,我想根据以下条件将其中一些元素设置为零: 我遍历矩阵的每个元素并掷一枚硬币,其成功概率为 0.3,如果成功,我将元素设置为零,否则我将继续处理下一个元素。我希望在 MATLAB 中做到这一点,并且还具有使用上述标准更改的元素的索引。我尝试使用以下内容:

B = (rand(size(A)) <= 0.3);

我不确定如何在矩阵 A 本身中启用此功能。

I have a matrix A of size mXn and I would like to set some of it elements to zero depending on the following criteria:
I go through each element of the matrix and flip a coin whose probability of success is 0.3, if there is a success I set the element to zero else I move on to the next element. I wish to do this is MATLAB and also have the indices of elements that were changed using the above criteria. I tried using the following:

B = (rand(size(A)) <= 0.3);

I am not sure how to enable this in matrix A itself.

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

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

发布评论

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

评论(3

獨角戲 2024-12-15 13:50:08

或者简单地说:

A( rand( size(A) ) < 0.3 ) = 0;

Or simply:

A( rand( size(A) ) < 0.3 ) = 0;

故事灯 2024-12-15 13:50:08

我认为你想要的是

I = (rand(size(A)) < 0.3);
A(I) = 0;

但我可能误解了这个问题。

I think what you want is

I = (rand(size(A)) < 0.3);
A(I) = 0;

But I may have misunderstood the question.

话少情深 2024-12-15 13:50:08

首先搜索符合您条件的项目

zero_index = find( rand( size( A ) ) <= 0.3 ) );

将这些项目替换为零

A( zero_index ) = zeros( size( zero_index ) )

First search for items that match your condition

zero_index = find( rand( size( A ) ) <= 0.3 ) );

Replace those items by zero

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